@pulumi/harness 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/platform/azureCloudCostConnector.d.ts +9 -0
- package/platform/azureCloudCostConnector.js +9 -0
- package/platform/azureCloudCostConnector.js.map +1 -1
- package/platform/defaultNotificationTemplateSet.d.ts +147 -0
- package/platform/defaultNotificationTemplateSet.js +80 -0
- package/platform/defaultNotificationTemplateSet.js.map +1 -0
- package/platform/getAzureCloudCostConnector.d.ts +3 -0
- package/platform/getAzureCloudCostConnector.js.map +1 -1
- package/platform/getDefaultNotificationTemplateSet.d.ts +128 -0
- package/platform/getDefaultNotificationTemplateSet.js +40 -0
- package/platform/getDefaultNotificationTemplateSet.js.map +1 -0
- package/platform/gitopsApplicationset.d.ts +1 -0
- package/platform/gitopsApplicationset.js +1 -0
- package/platform/gitopsApplicationset.js.map +1 -1
- package/platform/index.d.ts +6 -0
- package/platform/index.js +16 -7
- package/platform/index.js.map +1 -1
- package/types/input.d.ts +466 -1
- package/types/output.d.ts +444 -2
package/types/output.d.ts
CHANGED
|
@@ -2678,7 +2678,7 @@ export declare namespace platform {
|
|
|
2678
2678
|
*/
|
|
2679
2679
|
storageAccountName: string;
|
|
2680
2680
|
/**
|
|
2681
|
-
* Subsription
|
|
2681
|
+
* Subsription Id.
|
|
2682
2682
|
*/
|
|
2683
2683
|
subscriptionId: string;
|
|
2684
2684
|
}
|
|
@@ -3063,6 +3063,29 @@ export declare namespace platform {
|
|
|
3063
3063
|
*/
|
|
3064
3064
|
repo?: string;
|
|
3065
3065
|
}
|
|
3066
|
+
interface DefaultNotificationTemplateSetEventTemplateConfigurationSet {
|
|
3067
|
+
/**
|
|
3068
|
+
* List of notification events like PIPELINE_START
|
|
3069
|
+
*/
|
|
3070
|
+
notificationEvents: string[];
|
|
3071
|
+
/**
|
|
3072
|
+
* Template reference configuration
|
|
3073
|
+
*/
|
|
3074
|
+
template: outputs.platform.DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate;
|
|
3075
|
+
}
|
|
3076
|
+
interface DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate {
|
|
3077
|
+
templateRef: string;
|
|
3078
|
+
/**
|
|
3079
|
+
* List of variables passed to the template
|
|
3080
|
+
*/
|
|
3081
|
+
variables?: outputs.platform.DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable[];
|
|
3082
|
+
versionLabel: string;
|
|
3083
|
+
}
|
|
3084
|
+
interface DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable {
|
|
3085
|
+
name: string;
|
|
3086
|
+
type: string;
|
|
3087
|
+
value: string;
|
|
3088
|
+
}
|
|
3066
3089
|
interface DockerConnectorCredentials {
|
|
3067
3090
|
/**
|
|
3068
3091
|
* The reference to the Harness secret containing the password to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
@@ -3681,7 +3704,7 @@ export declare namespace platform {
|
|
|
3681
3704
|
*/
|
|
3682
3705
|
storageAccountName: string;
|
|
3683
3706
|
/**
|
|
3684
|
-
* Subsription
|
|
3707
|
+
* Subsription Id.
|
|
3685
3708
|
*/
|
|
3686
3709
|
subscriptionId: string;
|
|
3687
3710
|
}
|
|
@@ -4115,6 +4138,29 @@ export declare namespace platform {
|
|
|
4115
4138
|
*/
|
|
4116
4139
|
repo: string;
|
|
4117
4140
|
}
|
|
4141
|
+
interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSet {
|
|
4142
|
+
/**
|
|
4143
|
+
* List of notification events like PIPELINE_START
|
|
4144
|
+
*/
|
|
4145
|
+
notificationEvents: string[];
|
|
4146
|
+
/**
|
|
4147
|
+
* Template reference configuration
|
|
4148
|
+
*/
|
|
4149
|
+
template: outputs.platform.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate;
|
|
4150
|
+
}
|
|
4151
|
+
interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate {
|
|
4152
|
+
templateRef: string;
|
|
4153
|
+
/**
|
|
4154
|
+
* List of variables passed to the template
|
|
4155
|
+
*/
|
|
4156
|
+
variables?: outputs.platform.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable[];
|
|
4157
|
+
versionLabel: string;
|
|
4158
|
+
}
|
|
4159
|
+
interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable {
|
|
4160
|
+
name: string;
|
|
4161
|
+
type: string;
|
|
4162
|
+
value: string;
|
|
4163
|
+
}
|
|
4118
4164
|
interface GetDockerConnectorCredential {
|
|
4119
4165
|
/**
|
|
4120
4166
|
* Execute on delegate or not.
|
|
@@ -8075,6 +8121,10 @@ export declare namespace platform {
|
|
|
8075
8121
|
* Enable Go templating for the template field.
|
|
8076
8122
|
*/
|
|
8077
8123
|
goTemplate?: boolean;
|
|
8124
|
+
/**
|
|
8125
|
+
* Optional list of go templating options, see https://pkg.go.dev/text/template#Template.Optional. This is only relevant if `goTemplate` is true
|
|
8126
|
+
*/
|
|
8127
|
+
goTemplateOptions?: string[];
|
|
8078
8128
|
/**
|
|
8079
8129
|
* Application Set ignoreApplicationDifferences
|
|
8080
8130
|
*/
|
|
@@ -8493,6 +8543,14 @@ export declare namespace platform {
|
|
|
8493
8543
|
commonLabels?: {
|
|
8494
8544
|
[key: string]: string;
|
|
8495
8545
|
};
|
|
8546
|
+
/**
|
|
8547
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
8548
|
+
*/
|
|
8549
|
+
forceCommonAnnotations?: boolean;
|
|
8550
|
+
/**
|
|
8551
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
8552
|
+
*/
|
|
8553
|
+
forceCommonLabels?: boolean;
|
|
8496
8554
|
/**
|
|
8497
8555
|
* List of Kustomize image override specifications.
|
|
8498
8556
|
*/
|
|
@@ -8915,6 +8973,14 @@ export declare namespace platform {
|
|
|
8915
8973
|
commonLabels?: {
|
|
8916
8974
|
[key: string]: string;
|
|
8917
8975
|
};
|
|
8976
|
+
/**
|
|
8977
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
8978
|
+
*/
|
|
8979
|
+
forceCommonAnnotations?: boolean;
|
|
8980
|
+
/**
|
|
8981
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
8982
|
+
*/
|
|
8983
|
+
forceCommonLabels?: boolean;
|
|
8918
8984
|
/**
|
|
8919
8985
|
* List of Kustomize image override specifications.
|
|
8920
8986
|
*/
|
|
@@ -9353,6 +9419,14 @@ export declare namespace platform {
|
|
|
9353
9419
|
commonLabels?: {
|
|
9354
9420
|
[key: string]: string;
|
|
9355
9421
|
};
|
|
9422
|
+
/**
|
|
9423
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
9424
|
+
*/
|
|
9425
|
+
forceCommonAnnotations?: boolean;
|
|
9426
|
+
/**
|
|
9427
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
9428
|
+
*/
|
|
9429
|
+
forceCommonLabels?: boolean;
|
|
9356
9430
|
/**
|
|
9357
9431
|
* List of Kustomize image override specifications.
|
|
9358
9432
|
*/
|
|
@@ -9761,6 +9835,14 @@ export declare namespace platform {
|
|
|
9761
9835
|
commonLabels?: {
|
|
9762
9836
|
[key: string]: string;
|
|
9763
9837
|
};
|
|
9838
|
+
/**
|
|
9839
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
9840
|
+
*/
|
|
9841
|
+
forceCommonAnnotations?: boolean;
|
|
9842
|
+
/**
|
|
9843
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
9844
|
+
*/
|
|
9845
|
+
forceCommonLabels?: boolean;
|
|
9764
9846
|
/**
|
|
9765
9847
|
* List of Kustomize image override specifications.
|
|
9766
9848
|
*/
|
|
@@ -10279,6 +10361,14 @@ export declare namespace platform {
|
|
|
10279
10361
|
commonLabels?: {
|
|
10280
10362
|
[key: string]: string;
|
|
10281
10363
|
};
|
|
10364
|
+
/**
|
|
10365
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
10366
|
+
*/
|
|
10367
|
+
forceCommonAnnotations?: boolean;
|
|
10368
|
+
/**
|
|
10369
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
10370
|
+
*/
|
|
10371
|
+
forceCommonLabels?: boolean;
|
|
10282
10372
|
/**
|
|
10283
10373
|
* List of Kustomize image override specifications.
|
|
10284
10374
|
*/
|
|
@@ -10701,6 +10791,14 @@ export declare namespace platform {
|
|
|
10701
10791
|
commonLabels?: {
|
|
10702
10792
|
[key: string]: string;
|
|
10703
10793
|
};
|
|
10794
|
+
/**
|
|
10795
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
10796
|
+
*/
|
|
10797
|
+
forceCommonAnnotations?: boolean;
|
|
10798
|
+
/**
|
|
10799
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
10800
|
+
*/
|
|
10801
|
+
forceCommonLabels?: boolean;
|
|
10704
10802
|
/**
|
|
10705
10803
|
* List of Kustomize image override specifications.
|
|
10706
10804
|
*/
|
|
@@ -11139,6 +11237,14 @@ export declare namespace platform {
|
|
|
11139
11237
|
commonLabels?: {
|
|
11140
11238
|
[key: string]: string;
|
|
11141
11239
|
};
|
|
11240
|
+
/**
|
|
11241
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
11242
|
+
*/
|
|
11243
|
+
forceCommonAnnotations?: boolean;
|
|
11244
|
+
/**
|
|
11245
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
11246
|
+
*/
|
|
11247
|
+
forceCommonLabels?: boolean;
|
|
11142
11248
|
/**
|
|
11143
11249
|
* List of Kustomize image override specifications.
|
|
11144
11250
|
*/
|
|
@@ -11547,6 +11653,14 @@ export declare namespace platform {
|
|
|
11547
11653
|
commonLabels?: {
|
|
11548
11654
|
[key: string]: string;
|
|
11549
11655
|
};
|
|
11656
|
+
/**
|
|
11657
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
11658
|
+
*/
|
|
11659
|
+
forceCommonAnnotations?: boolean;
|
|
11660
|
+
/**
|
|
11661
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
11662
|
+
*/
|
|
11663
|
+
forceCommonLabels?: boolean;
|
|
11550
11664
|
/**
|
|
11551
11665
|
* List of Kustomize image override specifications.
|
|
11552
11666
|
*/
|
|
@@ -12057,6 +12171,14 @@ export declare namespace platform {
|
|
|
12057
12171
|
commonLabels?: {
|
|
12058
12172
|
[key: string]: string;
|
|
12059
12173
|
};
|
|
12174
|
+
/**
|
|
12175
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
12176
|
+
*/
|
|
12177
|
+
forceCommonAnnotations?: boolean;
|
|
12178
|
+
/**
|
|
12179
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
12180
|
+
*/
|
|
12181
|
+
forceCommonLabels?: boolean;
|
|
12060
12182
|
/**
|
|
12061
12183
|
* List of Kustomize image override specifications.
|
|
12062
12184
|
*/
|
|
@@ -12479,6 +12601,14 @@ export declare namespace platform {
|
|
|
12479
12601
|
commonLabels?: {
|
|
12480
12602
|
[key: string]: string;
|
|
12481
12603
|
};
|
|
12604
|
+
/**
|
|
12605
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
12606
|
+
*/
|
|
12607
|
+
forceCommonAnnotations?: boolean;
|
|
12608
|
+
/**
|
|
12609
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
12610
|
+
*/
|
|
12611
|
+
forceCommonLabels?: boolean;
|
|
12482
12612
|
/**
|
|
12483
12613
|
* List of Kustomize image override specifications.
|
|
12484
12614
|
*/
|
|
@@ -12917,6 +13047,14 @@ export declare namespace platform {
|
|
|
12917
13047
|
commonLabels?: {
|
|
12918
13048
|
[key: string]: string;
|
|
12919
13049
|
};
|
|
13050
|
+
/**
|
|
13051
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
13052
|
+
*/
|
|
13053
|
+
forceCommonAnnotations?: boolean;
|
|
13054
|
+
/**
|
|
13055
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
13056
|
+
*/
|
|
13057
|
+
forceCommonLabels?: boolean;
|
|
12920
13058
|
/**
|
|
12921
13059
|
* List of Kustomize image override specifications.
|
|
12922
13060
|
*/
|
|
@@ -13325,6 +13463,14 @@ export declare namespace platform {
|
|
|
13325
13463
|
commonLabels?: {
|
|
13326
13464
|
[key: string]: string;
|
|
13327
13465
|
};
|
|
13466
|
+
/**
|
|
13467
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
13468
|
+
*/
|
|
13469
|
+
forceCommonAnnotations?: boolean;
|
|
13470
|
+
/**
|
|
13471
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
13472
|
+
*/
|
|
13473
|
+
forceCommonLabels?: boolean;
|
|
13328
13474
|
/**
|
|
13329
13475
|
* List of Kustomize image override specifications.
|
|
13330
13476
|
*/
|
|
@@ -13895,6 +14041,14 @@ export declare namespace platform {
|
|
|
13895
14041
|
commonLabels?: {
|
|
13896
14042
|
[key: string]: string;
|
|
13897
14043
|
};
|
|
14044
|
+
/**
|
|
14045
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
14046
|
+
*/
|
|
14047
|
+
forceCommonAnnotations?: boolean;
|
|
14048
|
+
/**
|
|
14049
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
14050
|
+
*/
|
|
14051
|
+
forceCommonLabels?: boolean;
|
|
13898
14052
|
/**
|
|
13899
14053
|
* List of Kustomize image override specifications.
|
|
13900
14054
|
*/
|
|
@@ -14549,6 +14703,14 @@ export declare namespace platform {
|
|
|
14549
14703
|
commonLabels?: {
|
|
14550
14704
|
[key: string]: string;
|
|
14551
14705
|
};
|
|
14706
|
+
/**
|
|
14707
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
14708
|
+
*/
|
|
14709
|
+
forceCommonAnnotations?: boolean;
|
|
14710
|
+
/**
|
|
14711
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
14712
|
+
*/
|
|
14713
|
+
forceCommonLabels?: boolean;
|
|
14552
14714
|
/**
|
|
14553
14715
|
* List of Kustomize image override specifications.
|
|
14554
14716
|
*/
|
|
@@ -14971,6 +15133,14 @@ export declare namespace platform {
|
|
|
14971
15133
|
commonLabels?: {
|
|
14972
15134
|
[key: string]: string;
|
|
14973
15135
|
};
|
|
15136
|
+
/**
|
|
15137
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
15138
|
+
*/
|
|
15139
|
+
forceCommonAnnotations?: boolean;
|
|
15140
|
+
/**
|
|
15141
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
15142
|
+
*/
|
|
15143
|
+
forceCommonLabels?: boolean;
|
|
14974
15144
|
/**
|
|
14975
15145
|
* List of Kustomize image override specifications.
|
|
14976
15146
|
*/
|
|
@@ -15485,6 +15655,14 @@ export declare namespace platform {
|
|
|
15485
15655
|
commonLabels?: {
|
|
15486
15656
|
[key: string]: string;
|
|
15487
15657
|
};
|
|
15658
|
+
/**
|
|
15659
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
15660
|
+
*/
|
|
15661
|
+
forceCommonAnnotations?: boolean;
|
|
15662
|
+
/**
|
|
15663
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
15664
|
+
*/
|
|
15665
|
+
forceCommonLabels?: boolean;
|
|
15488
15666
|
/**
|
|
15489
15667
|
* List of Kustomize image override specifications.
|
|
15490
15668
|
*/
|
|
@@ -15907,6 +16085,14 @@ export declare namespace platform {
|
|
|
15907
16085
|
commonLabels?: {
|
|
15908
16086
|
[key: string]: string;
|
|
15909
16087
|
};
|
|
16088
|
+
/**
|
|
16089
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
16090
|
+
*/
|
|
16091
|
+
forceCommonAnnotations?: boolean;
|
|
16092
|
+
/**
|
|
16093
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
16094
|
+
*/
|
|
16095
|
+
forceCommonLabels?: boolean;
|
|
15910
16096
|
/**
|
|
15911
16097
|
* List of Kustomize image override specifications.
|
|
15912
16098
|
*/
|
|
@@ -16345,6 +16531,14 @@ export declare namespace platform {
|
|
|
16345
16531
|
commonLabels?: {
|
|
16346
16532
|
[key: string]: string;
|
|
16347
16533
|
};
|
|
16534
|
+
/**
|
|
16535
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
16536
|
+
*/
|
|
16537
|
+
forceCommonAnnotations?: boolean;
|
|
16538
|
+
/**
|
|
16539
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
16540
|
+
*/
|
|
16541
|
+
forceCommonLabels?: boolean;
|
|
16348
16542
|
/**
|
|
16349
16543
|
* List of Kustomize image override specifications.
|
|
16350
16544
|
*/
|
|
@@ -16753,6 +16947,14 @@ export declare namespace platform {
|
|
|
16753
16947
|
commonLabels?: {
|
|
16754
16948
|
[key: string]: string;
|
|
16755
16949
|
};
|
|
16950
|
+
/**
|
|
16951
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
16952
|
+
*/
|
|
16953
|
+
forceCommonAnnotations?: boolean;
|
|
16954
|
+
/**
|
|
16955
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
16956
|
+
*/
|
|
16957
|
+
forceCommonLabels?: boolean;
|
|
16756
16958
|
/**
|
|
16757
16959
|
* List of Kustomize image override specifications.
|
|
16758
16960
|
*/
|
|
@@ -17323,6 +17525,14 @@ export declare namespace platform {
|
|
|
17323
17525
|
commonLabels?: {
|
|
17324
17526
|
[key: string]: string;
|
|
17325
17527
|
};
|
|
17528
|
+
/**
|
|
17529
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
17530
|
+
*/
|
|
17531
|
+
forceCommonAnnotations?: boolean;
|
|
17532
|
+
/**
|
|
17533
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
17534
|
+
*/
|
|
17535
|
+
forceCommonLabels?: boolean;
|
|
17326
17536
|
/**
|
|
17327
17537
|
* List of Kustomize image override specifications.
|
|
17328
17538
|
*/
|
|
@@ -17977,6 +18187,14 @@ export declare namespace platform {
|
|
|
17977
18187
|
commonLabels?: {
|
|
17978
18188
|
[key: string]: string;
|
|
17979
18189
|
};
|
|
18190
|
+
/**
|
|
18191
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
18192
|
+
*/
|
|
18193
|
+
forceCommonAnnotations?: boolean;
|
|
18194
|
+
/**
|
|
18195
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
18196
|
+
*/
|
|
18197
|
+
forceCommonLabels?: boolean;
|
|
17980
18198
|
/**
|
|
17981
18199
|
* List of Kustomize image override specifications.
|
|
17982
18200
|
*/
|
|
@@ -18399,6 +18617,14 @@ export declare namespace platform {
|
|
|
18399
18617
|
commonLabels?: {
|
|
18400
18618
|
[key: string]: string;
|
|
18401
18619
|
};
|
|
18620
|
+
/**
|
|
18621
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
18622
|
+
*/
|
|
18623
|
+
forceCommonAnnotations?: boolean;
|
|
18624
|
+
/**
|
|
18625
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
18626
|
+
*/
|
|
18627
|
+
forceCommonLabels?: boolean;
|
|
18402
18628
|
/**
|
|
18403
18629
|
* List of Kustomize image override specifications.
|
|
18404
18630
|
*/
|
|
@@ -18969,6 +19195,14 @@ export declare namespace platform {
|
|
|
18969
19195
|
commonLabels?: {
|
|
18970
19196
|
[key: string]: string;
|
|
18971
19197
|
};
|
|
19198
|
+
/**
|
|
19199
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
19200
|
+
*/
|
|
19201
|
+
forceCommonAnnotations?: boolean;
|
|
19202
|
+
/**
|
|
19203
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
19204
|
+
*/
|
|
19205
|
+
forceCommonLabels?: boolean;
|
|
18972
19206
|
/**
|
|
18973
19207
|
* List of Kustomize image override specifications.
|
|
18974
19208
|
*/
|
|
@@ -19623,6 +19857,14 @@ export declare namespace platform {
|
|
|
19623
19857
|
commonLabels?: {
|
|
19624
19858
|
[key: string]: string;
|
|
19625
19859
|
};
|
|
19860
|
+
/**
|
|
19861
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
19862
|
+
*/
|
|
19863
|
+
forceCommonAnnotations?: boolean;
|
|
19864
|
+
/**
|
|
19865
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
19866
|
+
*/
|
|
19867
|
+
forceCommonLabels?: boolean;
|
|
19626
19868
|
/**
|
|
19627
19869
|
* List of Kustomize image override specifications.
|
|
19628
19870
|
*/
|
|
@@ -20045,6 +20287,14 @@ export declare namespace platform {
|
|
|
20045
20287
|
commonLabels?: {
|
|
20046
20288
|
[key: string]: string;
|
|
20047
20289
|
};
|
|
20290
|
+
/**
|
|
20291
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
20292
|
+
*/
|
|
20293
|
+
forceCommonAnnotations?: boolean;
|
|
20294
|
+
/**
|
|
20295
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
20296
|
+
*/
|
|
20297
|
+
forceCommonLabels?: boolean;
|
|
20048
20298
|
/**
|
|
20049
20299
|
* List of Kustomize image override specifications.
|
|
20050
20300
|
*/
|
|
@@ -20567,6 +20817,14 @@ export declare namespace platform {
|
|
|
20567
20817
|
commonLabels?: {
|
|
20568
20818
|
[key: string]: string;
|
|
20569
20819
|
};
|
|
20820
|
+
/**
|
|
20821
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
20822
|
+
*/
|
|
20823
|
+
forceCommonAnnotations?: boolean;
|
|
20824
|
+
/**
|
|
20825
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
20826
|
+
*/
|
|
20827
|
+
forceCommonLabels?: boolean;
|
|
20570
20828
|
/**
|
|
20571
20829
|
* List of Kustomize image override specifications.
|
|
20572
20830
|
*/
|
|
@@ -20989,6 +21247,14 @@ export declare namespace platform {
|
|
|
20989
21247
|
commonLabels?: {
|
|
20990
21248
|
[key: string]: string;
|
|
20991
21249
|
};
|
|
21250
|
+
/**
|
|
21251
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
21252
|
+
*/
|
|
21253
|
+
forceCommonAnnotations?: boolean;
|
|
21254
|
+
/**
|
|
21255
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
21256
|
+
*/
|
|
21257
|
+
forceCommonLabels?: boolean;
|
|
20992
21258
|
/**
|
|
20993
21259
|
* List of Kustomize image override specifications.
|
|
20994
21260
|
*/
|
|
@@ -21427,6 +21693,14 @@ export declare namespace platform {
|
|
|
21427
21693
|
commonLabels?: {
|
|
21428
21694
|
[key: string]: string;
|
|
21429
21695
|
};
|
|
21696
|
+
/**
|
|
21697
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
21698
|
+
*/
|
|
21699
|
+
forceCommonAnnotations?: boolean;
|
|
21700
|
+
/**
|
|
21701
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
21702
|
+
*/
|
|
21703
|
+
forceCommonLabels?: boolean;
|
|
21430
21704
|
/**
|
|
21431
21705
|
* List of Kustomize image override specifications.
|
|
21432
21706
|
*/
|
|
@@ -21835,6 +22109,14 @@ export declare namespace platform {
|
|
|
21835
22109
|
commonLabels?: {
|
|
21836
22110
|
[key: string]: string;
|
|
21837
22111
|
};
|
|
22112
|
+
/**
|
|
22113
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
22114
|
+
*/
|
|
22115
|
+
forceCommonAnnotations?: boolean;
|
|
22116
|
+
/**
|
|
22117
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
22118
|
+
*/
|
|
22119
|
+
forceCommonLabels?: boolean;
|
|
21838
22120
|
/**
|
|
21839
22121
|
* List of Kustomize image override specifications.
|
|
21840
22122
|
*/
|
|
@@ -22345,6 +22627,14 @@ export declare namespace platform {
|
|
|
22345
22627
|
commonLabels?: {
|
|
22346
22628
|
[key: string]: string;
|
|
22347
22629
|
};
|
|
22630
|
+
/**
|
|
22631
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
22632
|
+
*/
|
|
22633
|
+
forceCommonAnnotations?: boolean;
|
|
22634
|
+
/**
|
|
22635
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
22636
|
+
*/
|
|
22637
|
+
forceCommonLabels?: boolean;
|
|
22348
22638
|
/**
|
|
22349
22639
|
* List of Kustomize image override specifications.
|
|
22350
22640
|
*/
|
|
@@ -22767,6 +23057,14 @@ export declare namespace platform {
|
|
|
22767
23057
|
commonLabels?: {
|
|
22768
23058
|
[key: string]: string;
|
|
22769
23059
|
};
|
|
23060
|
+
/**
|
|
23061
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
23062
|
+
*/
|
|
23063
|
+
forceCommonAnnotations?: boolean;
|
|
23064
|
+
/**
|
|
23065
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
23066
|
+
*/
|
|
23067
|
+
forceCommonLabels?: boolean;
|
|
22770
23068
|
/**
|
|
22771
23069
|
* List of Kustomize image override specifications.
|
|
22772
23070
|
*/
|
|
@@ -23205,6 +23503,14 @@ export declare namespace platform {
|
|
|
23205
23503
|
commonLabels?: {
|
|
23206
23504
|
[key: string]: string;
|
|
23207
23505
|
};
|
|
23506
|
+
/**
|
|
23507
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
23508
|
+
*/
|
|
23509
|
+
forceCommonAnnotations?: boolean;
|
|
23510
|
+
/**
|
|
23511
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
23512
|
+
*/
|
|
23513
|
+
forceCommonLabels?: boolean;
|
|
23208
23514
|
/**
|
|
23209
23515
|
* List of Kustomize image override specifications.
|
|
23210
23516
|
*/
|
|
@@ -23613,6 +23919,14 @@ export declare namespace platform {
|
|
|
23613
23919
|
commonLabels?: {
|
|
23614
23920
|
[key: string]: string;
|
|
23615
23921
|
};
|
|
23922
|
+
/**
|
|
23923
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
23924
|
+
*/
|
|
23925
|
+
forceCommonAnnotations?: boolean;
|
|
23926
|
+
/**
|
|
23927
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
23928
|
+
*/
|
|
23929
|
+
forceCommonLabels?: boolean;
|
|
23616
23930
|
/**
|
|
23617
23931
|
* List of Kustomize image override specifications.
|
|
23618
23932
|
*/
|
|
@@ -24183,6 +24497,14 @@ export declare namespace platform {
|
|
|
24183
24497
|
commonLabels?: {
|
|
24184
24498
|
[key: string]: string;
|
|
24185
24499
|
};
|
|
24500
|
+
/**
|
|
24501
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
24502
|
+
*/
|
|
24503
|
+
forceCommonAnnotations?: boolean;
|
|
24504
|
+
/**
|
|
24505
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
24506
|
+
*/
|
|
24507
|
+
forceCommonLabels?: boolean;
|
|
24186
24508
|
/**
|
|
24187
24509
|
* List of Kustomize image override specifications.
|
|
24188
24510
|
*/
|
|
@@ -24837,6 +25159,14 @@ export declare namespace platform {
|
|
|
24837
25159
|
commonLabels?: {
|
|
24838
25160
|
[key: string]: string;
|
|
24839
25161
|
};
|
|
25162
|
+
/**
|
|
25163
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
25164
|
+
*/
|
|
25165
|
+
forceCommonAnnotations?: boolean;
|
|
25166
|
+
/**
|
|
25167
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
25168
|
+
*/
|
|
25169
|
+
forceCommonLabels?: boolean;
|
|
24840
25170
|
/**
|
|
24841
25171
|
* List of Kustomize image override specifications.
|
|
24842
25172
|
*/
|
|
@@ -25259,6 +25589,14 @@ export declare namespace platform {
|
|
|
25259
25589
|
commonLabels?: {
|
|
25260
25590
|
[key: string]: string;
|
|
25261
25591
|
};
|
|
25592
|
+
/**
|
|
25593
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
25594
|
+
*/
|
|
25595
|
+
forceCommonAnnotations?: boolean;
|
|
25596
|
+
/**
|
|
25597
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
25598
|
+
*/
|
|
25599
|
+
forceCommonLabels?: boolean;
|
|
25262
25600
|
/**
|
|
25263
25601
|
* List of Kustomize image override specifications.
|
|
25264
25602
|
*/
|
|
@@ -25773,6 +26111,14 @@ export declare namespace platform {
|
|
|
25773
26111
|
commonLabels?: {
|
|
25774
26112
|
[key: string]: string;
|
|
25775
26113
|
};
|
|
26114
|
+
/**
|
|
26115
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
26116
|
+
*/
|
|
26117
|
+
forceCommonAnnotations?: boolean;
|
|
26118
|
+
/**
|
|
26119
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
26120
|
+
*/
|
|
26121
|
+
forceCommonLabels?: boolean;
|
|
25776
26122
|
/**
|
|
25777
26123
|
* List of Kustomize image override specifications.
|
|
25778
26124
|
*/
|
|
@@ -26195,6 +26541,14 @@ export declare namespace platform {
|
|
|
26195
26541
|
commonLabels?: {
|
|
26196
26542
|
[key: string]: string;
|
|
26197
26543
|
};
|
|
26544
|
+
/**
|
|
26545
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
26546
|
+
*/
|
|
26547
|
+
forceCommonAnnotations?: boolean;
|
|
26548
|
+
/**
|
|
26549
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
26550
|
+
*/
|
|
26551
|
+
forceCommonLabels?: boolean;
|
|
26198
26552
|
/**
|
|
26199
26553
|
* List of Kustomize image override specifications.
|
|
26200
26554
|
*/
|
|
@@ -26633,6 +26987,14 @@ export declare namespace platform {
|
|
|
26633
26987
|
commonLabels?: {
|
|
26634
26988
|
[key: string]: string;
|
|
26635
26989
|
};
|
|
26990
|
+
/**
|
|
26991
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
26992
|
+
*/
|
|
26993
|
+
forceCommonAnnotations?: boolean;
|
|
26994
|
+
/**
|
|
26995
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
26996
|
+
*/
|
|
26997
|
+
forceCommonLabels?: boolean;
|
|
26636
26998
|
/**
|
|
26637
26999
|
* List of Kustomize image override specifications.
|
|
26638
27000
|
*/
|
|
@@ -27041,6 +27403,14 @@ export declare namespace platform {
|
|
|
27041
27403
|
commonLabels?: {
|
|
27042
27404
|
[key: string]: string;
|
|
27043
27405
|
};
|
|
27406
|
+
/**
|
|
27407
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
27408
|
+
*/
|
|
27409
|
+
forceCommonAnnotations?: boolean;
|
|
27410
|
+
/**
|
|
27411
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
27412
|
+
*/
|
|
27413
|
+
forceCommonLabels?: boolean;
|
|
27044
27414
|
/**
|
|
27045
27415
|
* List of Kustomize image override specifications.
|
|
27046
27416
|
*/
|
|
@@ -27611,6 +27981,14 @@ export declare namespace platform {
|
|
|
27611
27981
|
commonLabels?: {
|
|
27612
27982
|
[key: string]: string;
|
|
27613
27983
|
};
|
|
27984
|
+
/**
|
|
27985
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
27986
|
+
*/
|
|
27987
|
+
forceCommonAnnotations?: boolean;
|
|
27988
|
+
/**
|
|
27989
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
27990
|
+
*/
|
|
27991
|
+
forceCommonLabels?: boolean;
|
|
27614
27992
|
/**
|
|
27615
27993
|
* List of Kustomize image override specifications.
|
|
27616
27994
|
*/
|
|
@@ -28265,6 +28643,14 @@ export declare namespace platform {
|
|
|
28265
28643
|
commonLabels?: {
|
|
28266
28644
|
[key: string]: string;
|
|
28267
28645
|
};
|
|
28646
|
+
/**
|
|
28647
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
28648
|
+
*/
|
|
28649
|
+
forceCommonAnnotations?: boolean;
|
|
28650
|
+
/**
|
|
28651
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
28652
|
+
*/
|
|
28653
|
+
forceCommonLabels?: boolean;
|
|
28268
28654
|
/**
|
|
28269
28655
|
* List of Kustomize image override specifications.
|
|
28270
28656
|
*/
|
|
@@ -28687,6 +29073,14 @@ export declare namespace platform {
|
|
|
28687
29073
|
commonLabels?: {
|
|
28688
29074
|
[key: string]: string;
|
|
28689
29075
|
};
|
|
29076
|
+
/**
|
|
29077
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
29078
|
+
*/
|
|
29079
|
+
forceCommonAnnotations?: boolean;
|
|
29080
|
+
/**
|
|
29081
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
29082
|
+
*/
|
|
29083
|
+
forceCommonLabels?: boolean;
|
|
28690
29084
|
/**
|
|
28691
29085
|
* List of Kustomize image override specifications.
|
|
28692
29086
|
*/
|
|
@@ -29257,6 +29651,14 @@ export declare namespace platform {
|
|
|
29257
29651
|
commonLabels?: {
|
|
29258
29652
|
[key: string]: string;
|
|
29259
29653
|
};
|
|
29654
|
+
/**
|
|
29655
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
29656
|
+
*/
|
|
29657
|
+
forceCommonAnnotations?: boolean;
|
|
29658
|
+
/**
|
|
29659
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
29660
|
+
*/
|
|
29661
|
+
forceCommonLabels?: boolean;
|
|
29260
29662
|
/**
|
|
29261
29663
|
* List of Kustomize image override specifications.
|
|
29262
29664
|
*/
|
|
@@ -29911,6 +30313,14 @@ export declare namespace platform {
|
|
|
29911
30313
|
commonLabels?: {
|
|
29912
30314
|
[key: string]: string;
|
|
29913
30315
|
};
|
|
30316
|
+
/**
|
|
30317
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
30318
|
+
*/
|
|
30319
|
+
forceCommonAnnotations?: boolean;
|
|
30320
|
+
/**
|
|
30321
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
30322
|
+
*/
|
|
30323
|
+
forceCommonLabels?: boolean;
|
|
29914
30324
|
/**
|
|
29915
30325
|
* List of Kustomize image override specifications.
|
|
29916
30326
|
*/
|
|
@@ -30333,6 +30743,14 @@ export declare namespace platform {
|
|
|
30333
30743
|
commonLabels?: {
|
|
30334
30744
|
[key: string]: string;
|
|
30335
30745
|
};
|
|
30746
|
+
/**
|
|
30747
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
30748
|
+
*/
|
|
30749
|
+
forceCommonAnnotations?: boolean;
|
|
30750
|
+
/**
|
|
30751
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
30752
|
+
*/
|
|
30753
|
+
forceCommonLabels?: boolean;
|
|
30336
30754
|
/**
|
|
30337
30755
|
* List of Kustomize image override specifications.
|
|
30338
30756
|
*/
|
|
@@ -30903,6 +31321,14 @@ export declare namespace platform {
|
|
|
30903
31321
|
commonLabels?: {
|
|
30904
31322
|
[key: string]: string;
|
|
30905
31323
|
};
|
|
31324
|
+
/**
|
|
31325
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
31326
|
+
*/
|
|
31327
|
+
forceCommonAnnotations?: boolean;
|
|
31328
|
+
/**
|
|
31329
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
31330
|
+
*/
|
|
31331
|
+
forceCommonLabels?: boolean;
|
|
30906
31332
|
/**
|
|
30907
31333
|
* List of Kustomize image override specifications.
|
|
30908
31334
|
*/
|
|
@@ -31557,6 +31983,14 @@ export declare namespace platform {
|
|
|
31557
31983
|
commonLabels?: {
|
|
31558
31984
|
[key: string]: string;
|
|
31559
31985
|
};
|
|
31986
|
+
/**
|
|
31987
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
31988
|
+
*/
|
|
31989
|
+
forceCommonAnnotations?: boolean;
|
|
31990
|
+
/**
|
|
31991
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
31992
|
+
*/
|
|
31993
|
+
forceCommonLabels?: boolean;
|
|
31560
31994
|
/**
|
|
31561
31995
|
* List of Kustomize image override specifications.
|
|
31562
31996
|
*/
|
|
@@ -32043,6 +32477,14 @@ export declare namespace platform {
|
|
|
32043
32477
|
commonLabels?: {
|
|
32044
32478
|
[key: string]: string;
|
|
32045
32479
|
};
|
|
32480
|
+
/**
|
|
32481
|
+
* Indicates if to force applying common annotations to resources for kustomize apps.
|
|
32482
|
+
*/
|
|
32483
|
+
forceCommonAnnotations?: boolean;
|
|
32484
|
+
/**
|
|
32485
|
+
* Indicates if to force apply common labels to resources for kustomize apps.
|
|
32486
|
+
*/
|
|
32487
|
+
forceCommonLabels?: boolean;
|
|
32046
32488
|
/**
|
|
32047
32489
|
* List of Kustomize image override specifications.
|
|
32048
32490
|
*/
|