@pulumi/harness 0.9.0-alpha.1760681338 → 0.9.0
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/cluster/getOrchestratorConfig.d.ts +12 -0
- package/cluster/getOrchestratorConfig.js +2 -0
- package/cluster/getOrchestratorConfig.js.map +1 -1
- package/cluster/orchestratorConfig.d.ts +13 -0
- package/cluster/orchestratorConfig.js +3 -0
- package/cluster/orchestratorConfig.js.map +1 -1
- package/package.json +2 -2
- package/platform/dbInstance.d.ts +19 -19
- package/platform/dbInstance.js +3 -3
- package/platform/dbInstance.js.map +1 -1
- package/platform/getDbInstance.d.ts +18 -18
- package/platform/getDbInstance.js +2 -2
- package/platform/getDbInstance.js.map +1 -1
- package/platform/getInfraModule.d.ts +110 -0
- package/platform/getInfraModule.js +18 -0
- package/platform/getInfraModule.js.map +1 -1
- package/platform/getInfraModuleTesting.d.ts +225 -0
- package/platform/getInfraModuleTesting.js +50 -0
- package/platform/getInfraModuleTesting.js.map +1 -0
- package/platform/getInfraModules.d.ts +41 -0
- package/platform/getInfraModules.js +42 -0
- package/platform/getInfraModules.js.map +1 -0
- package/platform/getPipelineCentralNotificationRule.d.ts +0 -36
- package/platform/getPipelineCentralNotificationRule.js.map +1 -1
- package/platform/gitOpsApplications.d.ts +0 -2
- package/platform/gitOpsApplications.js +0 -2
- package/platform/gitOpsApplications.js.map +1 -1
- package/platform/gitopsApplicationset.d.ts +157 -3
- package/platform/gitopsApplicationset.js +157 -3
- package/platform/gitopsApplicationset.js.map +1 -1
- package/platform/index.d.ts +9 -0
- package/platform/index.js +16 -5
- package/platform/index.js.map +1 -1
- package/platform/infraModuleTesting.d.ts +304 -0
- package/platform/infraModuleTesting.js +133 -0
- package/platform/infraModuleTesting.js.map +1 -0
- package/platform/pipelineCentralNotificationRule.d.ts +9 -0
- package/platform/pipelineCentralNotificationRule.js.map +1 -1
- package/types/input.d.ts +1143 -74
- package/types/output.d.ts +1201 -126
package/types/output.d.ts
CHANGED
|
@@ -5488,6 +5488,148 @@ export declare namespace platform {
|
|
|
5488
5488
|
*/
|
|
5489
5489
|
usernameRef: string;
|
|
5490
5490
|
}
|
|
5491
|
+
interface GetInfraModuleTestingMetadata {
|
|
5492
|
+
/**
|
|
5493
|
+
* Account is the internal customer account ID
|
|
5494
|
+
*/
|
|
5495
|
+
account: string;
|
|
5496
|
+
/**
|
|
5497
|
+
* Organization identifier
|
|
5498
|
+
*/
|
|
5499
|
+
org: string;
|
|
5500
|
+
/**
|
|
5501
|
+
* Pipelines where the testing is enabled
|
|
5502
|
+
*/
|
|
5503
|
+
pipelines: string[];
|
|
5504
|
+
/**
|
|
5505
|
+
* Project identifier
|
|
5506
|
+
*/
|
|
5507
|
+
project: string;
|
|
5508
|
+
/**
|
|
5509
|
+
* Provider connector for testing purposes
|
|
5510
|
+
*/
|
|
5511
|
+
providerConnector: string;
|
|
5512
|
+
/**
|
|
5513
|
+
* Provisioner type for testing purposes
|
|
5514
|
+
*/
|
|
5515
|
+
provisionerType: string;
|
|
5516
|
+
/**
|
|
5517
|
+
* Provisioner version for testing purposes
|
|
5518
|
+
*/
|
|
5519
|
+
provisionerVersion: string;
|
|
5520
|
+
/**
|
|
5521
|
+
* Release pipeline
|
|
5522
|
+
*/
|
|
5523
|
+
releasePipeline: string;
|
|
5524
|
+
}
|
|
5525
|
+
interface GetInfraModuleTestingTestingMetadata {
|
|
5526
|
+
/**
|
|
5527
|
+
* Account is the internal customer account ID
|
|
5528
|
+
*/
|
|
5529
|
+
account: string;
|
|
5530
|
+
/**
|
|
5531
|
+
* Organization identifier
|
|
5532
|
+
*/
|
|
5533
|
+
org: string;
|
|
5534
|
+
/**
|
|
5535
|
+
* Pipelines where the testing is enabled
|
|
5536
|
+
*/
|
|
5537
|
+
pipelines: string[];
|
|
5538
|
+
/**
|
|
5539
|
+
* Project identifier
|
|
5540
|
+
*/
|
|
5541
|
+
project: string;
|
|
5542
|
+
/**
|
|
5543
|
+
* Provider connector for testing purposes
|
|
5544
|
+
*/
|
|
5545
|
+
providerConnector: string;
|
|
5546
|
+
/**
|
|
5547
|
+
* Provisioner type for testing purposes
|
|
5548
|
+
*/
|
|
5549
|
+
provisionerType: string;
|
|
5550
|
+
/**
|
|
5551
|
+
* Provisioner version for testing purposes
|
|
5552
|
+
*/
|
|
5553
|
+
provisionerVersion: string;
|
|
5554
|
+
/**
|
|
5555
|
+
* Release pipeline
|
|
5556
|
+
*/
|
|
5557
|
+
releasePipeline: string;
|
|
5558
|
+
}
|
|
5559
|
+
interface GetInfraModulesModule {
|
|
5560
|
+
/**
|
|
5561
|
+
* Account that owns the module
|
|
5562
|
+
*/
|
|
5563
|
+
account: string;
|
|
5564
|
+
/**
|
|
5565
|
+
* Timestamp when the module was created
|
|
5566
|
+
*/
|
|
5567
|
+
created: number;
|
|
5568
|
+
/**
|
|
5569
|
+
* Description of the module
|
|
5570
|
+
*/
|
|
5571
|
+
description: string;
|
|
5572
|
+
/**
|
|
5573
|
+
* Identifier of the module
|
|
5574
|
+
*/
|
|
5575
|
+
id: string;
|
|
5576
|
+
/**
|
|
5577
|
+
* Name of the module
|
|
5578
|
+
*/
|
|
5579
|
+
name: string;
|
|
5580
|
+
/**
|
|
5581
|
+
* Organization that owns the module
|
|
5582
|
+
*/
|
|
5583
|
+
org: string;
|
|
5584
|
+
/**
|
|
5585
|
+
* Project that owns the module
|
|
5586
|
+
*/
|
|
5587
|
+
project: string;
|
|
5588
|
+
/**
|
|
5589
|
+
* Repository where the module is stored
|
|
5590
|
+
*/
|
|
5591
|
+
repository: string;
|
|
5592
|
+
/**
|
|
5593
|
+
* Repository branch
|
|
5594
|
+
*/
|
|
5595
|
+
repositoryBranch: string;
|
|
5596
|
+
/**
|
|
5597
|
+
* Repository commit
|
|
5598
|
+
*/
|
|
5599
|
+
repositoryCommit: string;
|
|
5600
|
+
/**
|
|
5601
|
+
* Repository connector reference
|
|
5602
|
+
*/
|
|
5603
|
+
repositoryConnector: string;
|
|
5604
|
+
/**
|
|
5605
|
+
* Path within repository
|
|
5606
|
+
*/
|
|
5607
|
+
repositoryPath: string;
|
|
5608
|
+
/**
|
|
5609
|
+
* Repository URL
|
|
5610
|
+
*/
|
|
5611
|
+
repositoryUrl: string;
|
|
5612
|
+
/**
|
|
5613
|
+
* Timestamp when the module was last synced
|
|
5614
|
+
*/
|
|
5615
|
+
synced: number;
|
|
5616
|
+
/**
|
|
5617
|
+
* Provider of the module
|
|
5618
|
+
*/
|
|
5619
|
+
system: string;
|
|
5620
|
+
/**
|
|
5621
|
+
* Tags associated with the module
|
|
5622
|
+
*/
|
|
5623
|
+
tags: string;
|
|
5624
|
+
/**
|
|
5625
|
+
* Whether testing is enabled for the module
|
|
5626
|
+
*/
|
|
5627
|
+
testingEnabled: boolean;
|
|
5628
|
+
/**
|
|
5629
|
+
* Timestamp when the module was last modified
|
|
5630
|
+
*/
|
|
5631
|
+
updated: number;
|
|
5632
|
+
}
|
|
5491
5633
|
interface GetInfraVariableSetConnector {
|
|
5492
5634
|
/**
|
|
5493
5635
|
* Connector Ref is the reference to the connector
|
|
@@ -6836,6 +6978,10 @@ export declare namespace platform {
|
|
|
6836
6978
|
* The ArgoCD project name corresponding to this GitOps application. Value must match mappings of ArgoCD projects to harness project.
|
|
6837
6979
|
*/
|
|
6838
6980
|
project: string;
|
|
6981
|
+
/**
|
|
6982
|
+
* Revision history limit for the application.
|
|
6983
|
+
*/
|
|
6984
|
+
revisionHistoryLimit?: string;
|
|
6839
6985
|
/**
|
|
6840
6986
|
* Contains all information about the source of the GitOps application.
|
|
6841
6987
|
*/
|
|
@@ -6853,7 +6999,7 @@ export declare namespace platform {
|
|
|
6853
6999
|
/**
|
|
6854
7000
|
* URL of the target cluster and must be set to the kubernetes control plane API.
|
|
6855
7001
|
*/
|
|
6856
|
-
name
|
|
7002
|
+
name: string;
|
|
6857
7003
|
/**
|
|
6858
7004
|
* Target namespace of the GitOps application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
6859
7005
|
*/
|
|
@@ -6873,7 +7019,7 @@ export declare namespace platform {
|
|
|
6873
7019
|
*/
|
|
6874
7020
|
directories?: outputs.platform.GitOpsApplicationsApplicationSpecSourceDirectory[];
|
|
6875
7021
|
/**
|
|
6876
|
-
*
|
|
7022
|
+
* Helm specific options.
|
|
6877
7023
|
*/
|
|
6878
7024
|
helms?: outputs.platform.GitOpsApplicationsApplicationSpecSourceHelm[];
|
|
6879
7025
|
/**
|
|
@@ -6884,6 +7030,10 @@ export declare namespace platform {
|
|
|
6884
7030
|
* Options specific to a GitOps application source specific to Kustomize.
|
|
6885
7031
|
*/
|
|
6886
7032
|
kustomizes?: outputs.platform.GitOpsApplicationsApplicationSpecSourceKustomize[];
|
|
7033
|
+
/**
|
|
7034
|
+
* Name is used to refer to a source and is displayed in the UI. It is used in multi-source Applications.
|
|
7035
|
+
*/
|
|
7036
|
+
name?: string;
|
|
6887
7037
|
/**
|
|
6888
7038
|
* Directory path within the git repository, and is only valid for the GitOps applications sourced from git.
|
|
6889
7039
|
*/
|
|
@@ -6967,27 +7117,27 @@ export declare namespace platform {
|
|
|
6967
7117
|
}
|
|
6968
7118
|
interface GitOpsApplicationsApplicationSpecSourceHelm {
|
|
6969
7119
|
/**
|
|
6970
|
-
* File parameters
|
|
7120
|
+
* File parameters for the helm template.
|
|
6971
7121
|
*/
|
|
6972
7122
|
fileParameters?: outputs.platform.GitOpsApplicationsApplicationSpecSourceHelmFileParameter[];
|
|
6973
7123
|
/**
|
|
6974
|
-
* Prevents 'helm template' from failing when valueFiles do not exist locally.
|
|
7124
|
+
* Prevents 'helm template' from failing when `valueFiles` do not exist locally by not appending them to 'helm template --values'.
|
|
6975
7125
|
*/
|
|
6976
7126
|
ignoreMissingValueFiles?: boolean;
|
|
6977
7127
|
/**
|
|
6978
|
-
*
|
|
7128
|
+
* Helm parameters which are passed to the helm template command upon manifest generation.
|
|
6979
7129
|
*/
|
|
6980
7130
|
parameters?: outputs.platform.GitOpsApplicationsApplicationSpecSourceHelmParameter[];
|
|
6981
7131
|
/**
|
|
6982
|
-
*
|
|
7132
|
+
* If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
|
|
6983
7133
|
*/
|
|
6984
7134
|
passCredentials?: boolean;
|
|
6985
7135
|
/**
|
|
6986
|
-
* Helm release name
|
|
7136
|
+
* Helm release name. If omitted it will use the application name.
|
|
6987
7137
|
*/
|
|
6988
7138
|
releaseName?: string;
|
|
6989
7139
|
/**
|
|
6990
|
-
*
|
|
7140
|
+
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
6991
7141
|
*/
|
|
6992
7142
|
skipCrds?: boolean;
|
|
6993
7143
|
/**
|
|
@@ -6999,35 +7149,41 @@ export declare namespace platform {
|
|
|
6999
7149
|
*/
|
|
7000
7150
|
skipTests?: boolean;
|
|
7001
7151
|
/**
|
|
7002
|
-
* List of
|
|
7152
|
+
* List of Helm value files to use when generating a template.
|
|
7003
7153
|
*/
|
|
7004
7154
|
valueFiles?: string[];
|
|
7005
7155
|
/**
|
|
7006
|
-
* Helm values to be passed to helm template, typically defined as a block.
|
|
7156
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
7007
7157
|
*/
|
|
7008
7158
|
values?: string;
|
|
7009
7159
|
/**
|
|
7010
|
-
* Helm
|
|
7160
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
7161
|
+
*/
|
|
7162
|
+
valuesObject?: {
|
|
7163
|
+
[key: string]: string;
|
|
7164
|
+
};
|
|
7165
|
+
/**
|
|
7166
|
+
* Helm version to use for templating (either "2" or "3").
|
|
7011
7167
|
*/
|
|
7012
7168
|
version?: string;
|
|
7013
7169
|
}
|
|
7014
7170
|
interface GitOpsApplicationsApplicationSpecSourceHelmFileParameter {
|
|
7015
7171
|
/**
|
|
7016
|
-
* Name of the
|
|
7172
|
+
* Name of the Helm parameter.
|
|
7017
7173
|
*/
|
|
7018
|
-
name
|
|
7174
|
+
name: string;
|
|
7019
7175
|
/**
|
|
7020
|
-
* Path to the file containing the values
|
|
7176
|
+
* Path to the file containing the values for the Helm parameter.
|
|
7021
7177
|
*/
|
|
7022
|
-
path
|
|
7178
|
+
path: string;
|
|
7023
7179
|
}
|
|
7024
7180
|
interface GitOpsApplicationsApplicationSpecSourceHelmParameter {
|
|
7025
7181
|
/**
|
|
7026
|
-
*
|
|
7182
|
+
* Determines whether to tell Helm to interpret booleans and numbers as strings.
|
|
7027
7183
|
*/
|
|
7028
7184
|
forceString?: boolean;
|
|
7029
7185
|
/**
|
|
7030
|
-
* Name of the
|
|
7186
|
+
* Name of the Helm parameter.
|
|
7031
7187
|
*/
|
|
7032
7188
|
name?: string;
|
|
7033
7189
|
/**
|
|
@@ -8379,7 +8535,7 @@ export declare namespace platform {
|
|
|
8379
8535
|
/**
|
|
8380
8536
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
8381
8537
|
*/
|
|
8382
|
-
revisionHistoryLimit
|
|
8538
|
+
revisionHistoryLimit: string;
|
|
8383
8539
|
/**
|
|
8384
8540
|
* Location of the application's manifests or chart.
|
|
8385
8541
|
*/
|
|
@@ -8397,7 +8553,7 @@ export declare namespace platform {
|
|
|
8397
8553
|
/**
|
|
8398
8554
|
* Name of the target cluster. Can be used instead of `server`.
|
|
8399
8555
|
*/
|
|
8400
|
-
name
|
|
8556
|
+
name: string;
|
|
8401
8557
|
/**
|
|
8402
8558
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
8403
8559
|
*/
|
|
@@ -8566,6 +8722,14 @@ export declare namespace platform {
|
|
|
8566
8722
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
8567
8723
|
*/
|
|
8568
8724
|
skipCrds?: boolean;
|
|
8725
|
+
/**
|
|
8726
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
8727
|
+
*/
|
|
8728
|
+
skipSchemaValidation?: boolean;
|
|
8729
|
+
/**
|
|
8730
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
8731
|
+
*/
|
|
8732
|
+
skipTests?: boolean;
|
|
8569
8733
|
/**
|
|
8570
8734
|
* List of Helm value files to use when generating a template.
|
|
8571
8735
|
*/
|
|
@@ -8574,6 +8738,16 @@ export declare namespace platform {
|
|
|
8574
8738
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
8575
8739
|
*/
|
|
8576
8740
|
values?: string;
|
|
8741
|
+
/**
|
|
8742
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
8743
|
+
*/
|
|
8744
|
+
valuesObject?: {
|
|
8745
|
+
[key: string]: string;
|
|
8746
|
+
};
|
|
8747
|
+
/**
|
|
8748
|
+
* Helm version to use for templating (either "2" or "3").
|
|
8749
|
+
*/
|
|
8750
|
+
version?: string;
|
|
8577
8751
|
}
|
|
8578
8752
|
interface GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
8579
8753
|
/**
|
|
@@ -8809,7 +8983,7 @@ export declare namespace platform {
|
|
|
8809
8983
|
/**
|
|
8810
8984
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
8811
8985
|
*/
|
|
8812
|
-
revisionHistoryLimit
|
|
8986
|
+
revisionHistoryLimit: string;
|
|
8813
8987
|
/**
|
|
8814
8988
|
* Location of the application's manifests or chart.
|
|
8815
8989
|
*/
|
|
@@ -8827,7 +9001,7 @@ export declare namespace platform {
|
|
|
8827
9001
|
/**
|
|
8828
9002
|
* Name of the target cluster. Can be used instead of `server`.
|
|
8829
9003
|
*/
|
|
8830
|
-
name
|
|
9004
|
+
name: string;
|
|
8831
9005
|
/**
|
|
8832
9006
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
8833
9007
|
*/
|
|
@@ -8996,6 +9170,14 @@ export declare namespace platform {
|
|
|
8996
9170
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
8997
9171
|
*/
|
|
8998
9172
|
skipCrds?: boolean;
|
|
9173
|
+
/**
|
|
9174
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
9175
|
+
*/
|
|
9176
|
+
skipSchemaValidation?: boolean;
|
|
9177
|
+
/**
|
|
9178
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
9179
|
+
*/
|
|
9180
|
+
skipTests?: boolean;
|
|
8999
9181
|
/**
|
|
9000
9182
|
* List of Helm value files to use when generating a template.
|
|
9001
9183
|
*/
|
|
@@ -9004,6 +9186,16 @@ export declare namespace platform {
|
|
|
9004
9186
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9005
9187
|
*/
|
|
9006
9188
|
values?: string;
|
|
9189
|
+
/**
|
|
9190
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9191
|
+
*/
|
|
9192
|
+
valuesObject?: {
|
|
9193
|
+
[key: string]: string;
|
|
9194
|
+
};
|
|
9195
|
+
/**
|
|
9196
|
+
* Helm version to use for templating (either "2" or "3").
|
|
9197
|
+
*/
|
|
9198
|
+
version?: string;
|
|
9007
9199
|
}
|
|
9008
9200
|
interface GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
9009
9201
|
/**
|
|
@@ -9255,7 +9447,7 @@ export declare namespace platform {
|
|
|
9255
9447
|
/**
|
|
9256
9448
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
9257
9449
|
*/
|
|
9258
|
-
revisionHistoryLimit
|
|
9450
|
+
revisionHistoryLimit: string;
|
|
9259
9451
|
/**
|
|
9260
9452
|
* Location of the application's manifests or chart.
|
|
9261
9453
|
*/
|
|
@@ -9273,7 +9465,7 @@ export declare namespace platform {
|
|
|
9273
9465
|
/**
|
|
9274
9466
|
* Name of the target cluster. Can be used instead of `server`.
|
|
9275
9467
|
*/
|
|
9276
|
-
name
|
|
9468
|
+
name: string;
|
|
9277
9469
|
/**
|
|
9278
9470
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
9279
9471
|
*/
|
|
@@ -9442,6 +9634,14 @@ export declare namespace platform {
|
|
|
9442
9634
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
9443
9635
|
*/
|
|
9444
9636
|
skipCrds?: boolean;
|
|
9637
|
+
/**
|
|
9638
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
9639
|
+
*/
|
|
9640
|
+
skipSchemaValidation?: boolean;
|
|
9641
|
+
/**
|
|
9642
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
9643
|
+
*/
|
|
9644
|
+
skipTests?: boolean;
|
|
9445
9645
|
/**
|
|
9446
9646
|
* List of Helm value files to use when generating a template.
|
|
9447
9647
|
*/
|
|
@@ -9450,6 +9650,16 @@ export declare namespace platform {
|
|
|
9450
9650
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9451
9651
|
*/
|
|
9452
9652
|
values?: string;
|
|
9653
|
+
/**
|
|
9654
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9655
|
+
*/
|
|
9656
|
+
valuesObject?: {
|
|
9657
|
+
[key: string]: string;
|
|
9658
|
+
};
|
|
9659
|
+
/**
|
|
9660
|
+
* Helm version to use for templating (either "2" or "3").
|
|
9661
|
+
*/
|
|
9662
|
+
version?: string;
|
|
9453
9663
|
}
|
|
9454
9664
|
interface GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
9455
9665
|
/**
|
|
@@ -9605,7 +9815,7 @@ export declare namespace platform {
|
|
|
9605
9815
|
}
|
|
9606
9816
|
interface GitopsApplicationsetApplicationsetSpecGeneratorList {
|
|
9607
9817
|
/**
|
|
9608
|
-
* List of key/value pairs to pass as parameters into the template
|
|
9818
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
9609
9819
|
*/
|
|
9610
9820
|
elements: {
|
|
9611
9821
|
[key: string]: string;
|
|
@@ -9671,7 +9881,7 @@ export declare namespace platform {
|
|
|
9671
9881
|
/**
|
|
9672
9882
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
9673
9883
|
*/
|
|
9674
|
-
revisionHistoryLimit
|
|
9884
|
+
revisionHistoryLimit: string;
|
|
9675
9885
|
/**
|
|
9676
9886
|
* Location of the application's manifests or chart.
|
|
9677
9887
|
*/
|
|
@@ -9689,7 +9899,7 @@ export declare namespace platform {
|
|
|
9689
9899
|
/**
|
|
9690
9900
|
* Name of the target cluster. Can be used instead of `server`.
|
|
9691
9901
|
*/
|
|
9692
|
-
name
|
|
9902
|
+
name: string;
|
|
9693
9903
|
/**
|
|
9694
9904
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
9695
9905
|
*/
|
|
@@ -9858,6 +10068,14 @@ export declare namespace platform {
|
|
|
9858
10068
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
9859
10069
|
*/
|
|
9860
10070
|
skipCrds?: boolean;
|
|
10071
|
+
/**
|
|
10072
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
10073
|
+
*/
|
|
10074
|
+
skipSchemaValidation?: boolean;
|
|
10075
|
+
/**
|
|
10076
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
10077
|
+
*/
|
|
10078
|
+
skipTests?: boolean;
|
|
9861
10079
|
/**
|
|
9862
10080
|
* List of Helm value files to use when generating a template.
|
|
9863
10081
|
*/
|
|
@@ -9866,6 +10084,16 @@ export declare namespace platform {
|
|
|
9866
10084
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9867
10085
|
*/
|
|
9868
10086
|
values?: string;
|
|
10087
|
+
/**
|
|
10088
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10089
|
+
*/
|
|
10090
|
+
valuesObject?: {
|
|
10091
|
+
[key: string]: string;
|
|
10092
|
+
};
|
|
10093
|
+
/**
|
|
10094
|
+
* Helm version to use for templating (either "2" or "3").
|
|
10095
|
+
*/
|
|
10096
|
+
version?: string;
|
|
9869
10097
|
}
|
|
9870
10098
|
interface GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
9871
10099
|
/**
|
|
@@ -10197,7 +10425,7 @@ export declare namespace platform {
|
|
|
10197
10425
|
/**
|
|
10198
10426
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
10199
10427
|
*/
|
|
10200
|
-
revisionHistoryLimit
|
|
10428
|
+
revisionHistoryLimit: string;
|
|
10201
10429
|
/**
|
|
10202
10430
|
* Location of the application's manifests or chart.
|
|
10203
10431
|
*/
|
|
@@ -10215,7 +10443,7 @@ export declare namespace platform {
|
|
|
10215
10443
|
/**
|
|
10216
10444
|
* Name of the target cluster. Can be used instead of `server`.
|
|
10217
10445
|
*/
|
|
10218
|
-
name
|
|
10446
|
+
name: string;
|
|
10219
10447
|
/**
|
|
10220
10448
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
10221
10449
|
*/
|
|
@@ -10384,6 +10612,14 @@ export declare namespace platform {
|
|
|
10384
10612
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
10385
10613
|
*/
|
|
10386
10614
|
skipCrds?: boolean;
|
|
10615
|
+
/**
|
|
10616
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
10617
|
+
*/
|
|
10618
|
+
skipSchemaValidation?: boolean;
|
|
10619
|
+
/**
|
|
10620
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
10621
|
+
*/
|
|
10622
|
+
skipTests?: boolean;
|
|
10387
10623
|
/**
|
|
10388
10624
|
* List of Helm value files to use when generating a template.
|
|
10389
10625
|
*/
|
|
@@ -10392,6 +10628,16 @@ export declare namespace platform {
|
|
|
10392
10628
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10393
10629
|
*/
|
|
10394
10630
|
values?: string;
|
|
10631
|
+
/**
|
|
10632
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10633
|
+
*/
|
|
10634
|
+
valuesObject?: {
|
|
10635
|
+
[key: string]: string;
|
|
10636
|
+
};
|
|
10637
|
+
/**
|
|
10638
|
+
* Helm version to use for templating (either "2" or "3").
|
|
10639
|
+
*/
|
|
10640
|
+
version?: string;
|
|
10395
10641
|
}
|
|
10396
10642
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
10397
10643
|
/**
|
|
@@ -10627,7 +10873,7 @@ export declare namespace platform {
|
|
|
10627
10873
|
/**
|
|
10628
10874
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
10629
10875
|
*/
|
|
10630
|
-
revisionHistoryLimit
|
|
10876
|
+
revisionHistoryLimit: string;
|
|
10631
10877
|
/**
|
|
10632
10878
|
* Location of the application's manifests or chart.
|
|
10633
10879
|
*/
|
|
@@ -10645,7 +10891,7 @@ export declare namespace platform {
|
|
|
10645
10891
|
/**
|
|
10646
10892
|
* Name of the target cluster. Can be used instead of `server`.
|
|
10647
10893
|
*/
|
|
10648
|
-
name
|
|
10894
|
+
name: string;
|
|
10649
10895
|
/**
|
|
10650
10896
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
10651
10897
|
*/
|
|
@@ -10814,6 +11060,14 @@ export declare namespace platform {
|
|
|
10814
11060
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
10815
11061
|
*/
|
|
10816
11062
|
skipCrds?: boolean;
|
|
11063
|
+
/**
|
|
11064
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
11065
|
+
*/
|
|
11066
|
+
skipSchemaValidation?: boolean;
|
|
11067
|
+
/**
|
|
11068
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
11069
|
+
*/
|
|
11070
|
+
skipTests?: boolean;
|
|
10817
11071
|
/**
|
|
10818
11072
|
* List of Helm value files to use when generating a template.
|
|
10819
11073
|
*/
|
|
@@ -10822,6 +11076,16 @@ export declare namespace platform {
|
|
|
10822
11076
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10823
11077
|
*/
|
|
10824
11078
|
values?: string;
|
|
11079
|
+
/**
|
|
11080
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11081
|
+
*/
|
|
11082
|
+
valuesObject?: {
|
|
11083
|
+
[key: string]: string;
|
|
11084
|
+
};
|
|
11085
|
+
/**
|
|
11086
|
+
* Helm version to use for templating (either "2" or "3").
|
|
11087
|
+
*/
|
|
11088
|
+
version?: string;
|
|
10825
11089
|
}
|
|
10826
11090
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
10827
11091
|
/**
|
|
@@ -11073,7 +11337,7 @@ export declare namespace platform {
|
|
|
11073
11337
|
/**
|
|
11074
11338
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
11075
11339
|
*/
|
|
11076
|
-
revisionHistoryLimit
|
|
11340
|
+
revisionHistoryLimit: string;
|
|
11077
11341
|
/**
|
|
11078
11342
|
* Location of the application's manifests or chart.
|
|
11079
11343
|
*/
|
|
@@ -11091,7 +11355,7 @@ export declare namespace platform {
|
|
|
11091
11355
|
/**
|
|
11092
11356
|
* Name of the target cluster. Can be used instead of `server`.
|
|
11093
11357
|
*/
|
|
11094
|
-
name
|
|
11358
|
+
name: string;
|
|
11095
11359
|
/**
|
|
11096
11360
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
11097
11361
|
*/
|
|
@@ -11260,6 +11524,14 @@ export declare namespace platform {
|
|
|
11260
11524
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
11261
11525
|
*/
|
|
11262
11526
|
skipCrds?: boolean;
|
|
11527
|
+
/**
|
|
11528
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
11529
|
+
*/
|
|
11530
|
+
skipSchemaValidation?: boolean;
|
|
11531
|
+
/**
|
|
11532
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
11533
|
+
*/
|
|
11534
|
+
skipTests?: boolean;
|
|
11263
11535
|
/**
|
|
11264
11536
|
* List of Helm value files to use when generating a template.
|
|
11265
11537
|
*/
|
|
@@ -11268,6 +11540,16 @@ export declare namespace platform {
|
|
|
11268
11540
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11269
11541
|
*/
|
|
11270
11542
|
values?: string;
|
|
11543
|
+
/**
|
|
11544
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11545
|
+
*/
|
|
11546
|
+
valuesObject?: {
|
|
11547
|
+
[key: string]: string;
|
|
11548
|
+
};
|
|
11549
|
+
/**
|
|
11550
|
+
* Helm version to use for templating (either "2" or "3").
|
|
11551
|
+
*/
|
|
11552
|
+
version?: string;
|
|
11271
11553
|
}
|
|
11272
11554
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
11273
11555
|
/**
|
|
@@ -11423,7 +11705,7 @@ export declare namespace platform {
|
|
|
11423
11705
|
}
|
|
11424
11706
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorList {
|
|
11425
11707
|
/**
|
|
11426
|
-
* List of key/value pairs to pass as parameters into the template
|
|
11708
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
11427
11709
|
*/
|
|
11428
11710
|
elements: {
|
|
11429
11711
|
[key: string]: string;
|
|
@@ -11489,7 +11771,7 @@ export declare namespace platform {
|
|
|
11489
11771
|
/**
|
|
11490
11772
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
11491
11773
|
*/
|
|
11492
|
-
revisionHistoryLimit
|
|
11774
|
+
revisionHistoryLimit: string;
|
|
11493
11775
|
/**
|
|
11494
11776
|
* Location of the application's manifests or chart.
|
|
11495
11777
|
*/
|
|
@@ -11507,7 +11789,7 @@ export declare namespace platform {
|
|
|
11507
11789
|
/**
|
|
11508
11790
|
* Name of the target cluster. Can be used instead of `server`.
|
|
11509
11791
|
*/
|
|
11510
|
-
name
|
|
11792
|
+
name: string;
|
|
11511
11793
|
/**
|
|
11512
11794
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
11513
11795
|
*/
|
|
@@ -11676,14 +11958,32 @@ export declare namespace platform {
|
|
|
11676
11958
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
11677
11959
|
*/
|
|
11678
11960
|
skipCrds?: boolean;
|
|
11961
|
+
/**
|
|
11962
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
11963
|
+
*/
|
|
11964
|
+
skipSchemaValidation?: boolean;
|
|
11965
|
+
/**
|
|
11966
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
11967
|
+
*/
|
|
11968
|
+
skipTests?: boolean;
|
|
11679
11969
|
/**
|
|
11680
11970
|
* List of Helm value files to use when generating a template.
|
|
11681
11971
|
*/
|
|
11682
11972
|
valueFiles?: string[];
|
|
11683
11973
|
/**
|
|
11684
|
-
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11974
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11975
|
+
*/
|
|
11976
|
+
values?: string;
|
|
11977
|
+
/**
|
|
11978
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11979
|
+
*/
|
|
11980
|
+
valuesObject?: {
|
|
11981
|
+
[key: string]: string;
|
|
11982
|
+
};
|
|
11983
|
+
/**
|
|
11984
|
+
* Helm version to use for templating (either "2" or "3").
|
|
11685
11985
|
*/
|
|
11686
|
-
|
|
11986
|
+
version?: string;
|
|
11687
11987
|
}
|
|
11688
11988
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
11689
11989
|
/**
|
|
@@ -12007,7 +12307,7 @@ export declare namespace platform {
|
|
|
12007
12307
|
/**
|
|
12008
12308
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
12009
12309
|
*/
|
|
12010
|
-
revisionHistoryLimit
|
|
12310
|
+
revisionHistoryLimit: string;
|
|
12011
12311
|
/**
|
|
12012
12312
|
* Location of the application's manifests or chart.
|
|
12013
12313
|
*/
|
|
@@ -12025,7 +12325,7 @@ export declare namespace platform {
|
|
|
12025
12325
|
/**
|
|
12026
12326
|
* Name of the target cluster. Can be used instead of `server`.
|
|
12027
12327
|
*/
|
|
12028
|
-
name
|
|
12328
|
+
name: string;
|
|
12029
12329
|
/**
|
|
12030
12330
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
12031
12331
|
*/
|
|
@@ -12194,6 +12494,14 @@ export declare namespace platform {
|
|
|
12194
12494
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
12195
12495
|
*/
|
|
12196
12496
|
skipCrds?: boolean;
|
|
12497
|
+
/**
|
|
12498
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
12499
|
+
*/
|
|
12500
|
+
skipSchemaValidation?: boolean;
|
|
12501
|
+
/**
|
|
12502
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
12503
|
+
*/
|
|
12504
|
+
skipTests?: boolean;
|
|
12197
12505
|
/**
|
|
12198
12506
|
* List of Helm value files to use when generating a template.
|
|
12199
12507
|
*/
|
|
@@ -12202,6 +12510,16 @@ export declare namespace platform {
|
|
|
12202
12510
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
12203
12511
|
*/
|
|
12204
12512
|
values?: string;
|
|
12513
|
+
/**
|
|
12514
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
12515
|
+
*/
|
|
12516
|
+
valuesObject?: {
|
|
12517
|
+
[key: string]: string;
|
|
12518
|
+
};
|
|
12519
|
+
/**
|
|
12520
|
+
* Helm version to use for templating (either "2" or "3").
|
|
12521
|
+
*/
|
|
12522
|
+
version?: string;
|
|
12205
12523
|
}
|
|
12206
12524
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
12207
12525
|
/**
|
|
@@ -12437,7 +12755,7 @@ export declare namespace platform {
|
|
|
12437
12755
|
/**
|
|
12438
12756
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
12439
12757
|
*/
|
|
12440
|
-
revisionHistoryLimit
|
|
12758
|
+
revisionHistoryLimit: string;
|
|
12441
12759
|
/**
|
|
12442
12760
|
* Location of the application's manifests or chart.
|
|
12443
12761
|
*/
|
|
@@ -12455,7 +12773,7 @@ export declare namespace platform {
|
|
|
12455
12773
|
/**
|
|
12456
12774
|
* Name of the target cluster. Can be used instead of `server`.
|
|
12457
12775
|
*/
|
|
12458
|
-
name
|
|
12776
|
+
name: string;
|
|
12459
12777
|
/**
|
|
12460
12778
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
12461
12779
|
*/
|
|
@@ -12624,6 +12942,14 @@ export declare namespace platform {
|
|
|
12624
12942
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
12625
12943
|
*/
|
|
12626
12944
|
skipCrds?: boolean;
|
|
12945
|
+
/**
|
|
12946
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
12947
|
+
*/
|
|
12948
|
+
skipSchemaValidation?: boolean;
|
|
12949
|
+
/**
|
|
12950
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
12951
|
+
*/
|
|
12952
|
+
skipTests?: boolean;
|
|
12627
12953
|
/**
|
|
12628
12954
|
* List of Helm value files to use when generating a template.
|
|
12629
12955
|
*/
|
|
@@ -12632,6 +12958,16 @@ export declare namespace platform {
|
|
|
12632
12958
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
12633
12959
|
*/
|
|
12634
12960
|
values?: string;
|
|
12961
|
+
/**
|
|
12962
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
12963
|
+
*/
|
|
12964
|
+
valuesObject?: {
|
|
12965
|
+
[key: string]: string;
|
|
12966
|
+
};
|
|
12967
|
+
/**
|
|
12968
|
+
* Helm version to use for templating (either "2" or "3").
|
|
12969
|
+
*/
|
|
12970
|
+
version?: string;
|
|
12635
12971
|
}
|
|
12636
12972
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
12637
12973
|
/**
|
|
@@ -12883,7 +13219,7 @@ export declare namespace platform {
|
|
|
12883
13219
|
/**
|
|
12884
13220
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
12885
13221
|
*/
|
|
12886
|
-
revisionHistoryLimit
|
|
13222
|
+
revisionHistoryLimit: string;
|
|
12887
13223
|
/**
|
|
12888
13224
|
* Location of the application's manifests or chart.
|
|
12889
13225
|
*/
|
|
@@ -12901,7 +13237,7 @@ export declare namespace platform {
|
|
|
12901
13237
|
/**
|
|
12902
13238
|
* Name of the target cluster. Can be used instead of `server`.
|
|
12903
13239
|
*/
|
|
12904
|
-
name
|
|
13240
|
+
name: string;
|
|
12905
13241
|
/**
|
|
12906
13242
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
12907
13243
|
*/
|
|
@@ -13070,6 +13406,14 @@ export declare namespace platform {
|
|
|
13070
13406
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
13071
13407
|
*/
|
|
13072
13408
|
skipCrds?: boolean;
|
|
13409
|
+
/**
|
|
13410
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
13411
|
+
*/
|
|
13412
|
+
skipSchemaValidation?: boolean;
|
|
13413
|
+
/**
|
|
13414
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
13415
|
+
*/
|
|
13416
|
+
skipTests?: boolean;
|
|
13073
13417
|
/**
|
|
13074
13418
|
* List of Helm value files to use when generating a template.
|
|
13075
13419
|
*/
|
|
@@ -13078,6 +13422,16 @@ export declare namespace platform {
|
|
|
13078
13422
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
13079
13423
|
*/
|
|
13080
13424
|
values?: string;
|
|
13425
|
+
/**
|
|
13426
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
13427
|
+
*/
|
|
13428
|
+
valuesObject?: {
|
|
13429
|
+
[key: string]: string;
|
|
13430
|
+
};
|
|
13431
|
+
/**
|
|
13432
|
+
* Helm version to use for templating (either "2" or "3").
|
|
13433
|
+
*/
|
|
13434
|
+
version?: string;
|
|
13081
13435
|
}
|
|
13082
13436
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
13083
13437
|
/**
|
|
@@ -13233,7 +13587,7 @@ export declare namespace platform {
|
|
|
13233
13587
|
}
|
|
13234
13588
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorList {
|
|
13235
13589
|
/**
|
|
13236
|
-
* List of key/value pairs to pass as parameters into the template
|
|
13590
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
13237
13591
|
*/
|
|
13238
13592
|
elements: {
|
|
13239
13593
|
[key: string]: string;
|
|
@@ -13299,7 +13653,7 @@ export declare namespace platform {
|
|
|
13299
13653
|
/**
|
|
13300
13654
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
13301
13655
|
*/
|
|
13302
|
-
revisionHistoryLimit
|
|
13656
|
+
revisionHistoryLimit: string;
|
|
13303
13657
|
/**
|
|
13304
13658
|
* Location of the application's manifests or chart.
|
|
13305
13659
|
*/
|
|
@@ -13317,7 +13671,7 @@ export declare namespace platform {
|
|
|
13317
13671
|
/**
|
|
13318
13672
|
* Name of the target cluster. Can be used instead of `server`.
|
|
13319
13673
|
*/
|
|
13320
|
-
name
|
|
13674
|
+
name: string;
|
|
13321
13675
|
/**
|
|
13322
13676
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
13323
13677
|
*/
|
|
@@ -13486,6 +13840,14 @@ export declare namespace platform {
|
|
|
13486
13840
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
13487
13841
|
*/
|
|
13488
13842
|
skipCrds?: boolean;
|
|
13843
|
+
/**
|
|
13844
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
13845
|
+
*/
|
|
13846
|
+
skipSchemaValidation?: boolean;
|
|
13847
|
+
/**
|
|
13848
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
13849
|
+
*/
|
|
13850
|
+
skipTests?: boolean;
|
|
13489
13851
|
/**
|
|
13490
13852
|
* List of Helm value files to use when generating a template.
|
|
13491
13853
|
*/
|
|
@@ -13494,6 +13856,16 @@ export declare namespace platform {
|
|
|
13494
13856
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
13495
13857
|
*/
|
|
13496
13858
|
values?: string;
|
|
13859
|
+
/**
|
|
13860
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
13861
|
+
*/
|
|
13862
|
+
valuesObject?: {
|
|
13863
|
+
[key: string]: string;
|
|
13864
|
+
};
|
|
13865
|
+
/**
|
|
13866
|
+
* Helm version to use for templating (either "2" or "3").
|
|
13867
|
+
*/
|
|
13868
|
+
version?: string;
|
|
13497
13869
|
}
|
|
13498
13870
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
13499
13871
|
/**
|
|
@@ -13877,7 +14249,7 @@ export declare namespace platform {
|
|
|
13877
14249
|
/**
|
|
13878
14250
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
13879
14251
|
*/
|
|
13880
|
-
revisionHistoryLimit
|
|
14252
|
+
revisionHistoryLimit: string;
|
|
13881
14253
|
/**
|
|
13882
14254
|
* Location of the application's manifests or chart.
|
|
13883
14255
|
*/
|
|
@@ -13895,7 +14267,7 @@ export declare namespace platform {
|
|
|
13895
14267
|
/**
|
|
13896
14268
|
* Name of the target cluster. Can be used instead of `server`.
|
|
13897
14269
|
*/
|
|
13898
|
-
name
|
|
14270
|
+
name: string;
|
|
13899
14271
|
/**
|
|
13900
14272
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
13901
14273
|
*/
|
|
@@ -14064,6 +14436,14 @@ export declare namespace platform {
|
|
|
14064
14436
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
14065
14437
|
*/
|
|
14066
14438
|
skipCrds?: boolean;
|
|
14439
|
+
/**
|
|
14440
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
14441
|
+
*/
|
|
14442
|
+
skipSchemaValidation?: boolean;
|
|
14443
|
+
/**
|
|
14444
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
14445
|
+
*/
|
|
14446
|
+
skipTests?: boolean;
|
|
14067
14447
|
/**
|
|
14068
14448
|
* List of Helm value files to use when generating a template.
|
|
14069
14449
|
*/
|
|
@@ -14072,6 +14452,16 @@ export declare namespace platform {
|
|
|
14072
14452
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
14073
14453
|
*/
|
|
14074
14454
|
values?: string;
|
|
14455
|
+
/**
|
|
14456
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
14457
|
+
*/
|
|
14458
|
+
valuesObject?: {
|
|
14459
|
+
[key: string]: string;
|
|
14460
|
+
};
|
|
14461
|
+
/**
|
|
14462
|
+
* Helm version to use for templating (either "2" or "3").
|
|
14463
|
+
*/
|
|
14464
|
+
version?: string;
|
|
14075
14465
|
}
|
|
14076
14466
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
14077
14467
|
/**
|
|
@@ -14539,7 +14929,7 @@ export declare namespace platform {
|
|
|
14539
14929
|
/**
|
|
14540
14930
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
14541
14931
|
*/
|
|
14542
|
-
revisionHistoryLimit
|
|
14932
|
+
revisionHistoryLimit: string;
|
|
14543
14933
|
/**
|
|
14544
14934
|
* Location of the application's manifests or chart.
|
|
14545
14935
|
*/
|
|
@@ -14557,7 +14947,7 @@ export declare namespace platform {
|
|
|
14557
14947
|
/**
|
|
14558
14948
|
* Name of the target cluster. Can be used instead of `server`.
|
|
14559
14949
|
*/
|
|
14560
|
-
name
|
|
14950
|
+
name: string;
|
|
14561
14951
|
/**
|
|
14562
14952
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
14563
14953
|
*/
|
|
@@ -14726,6 +15116,14 @@ export declare namespace platform {
|
|
|
14726
15116
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
14727
15117
|
*/
|
|
14728
15118
|
skipCrds?: boolean;
|
|
15119
|
+
/**
|
|
15120
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
15121
|
+
*/
|
|
15122
|
+
skipSchemaValidation?: boolean;
|
|
15123
|
+
/**
|
|
15124
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
15125
|
+
*/
|
|
15126
|
+
skipTests?: boolean;
|
|
14729
15127
|
/**
|
|
14730
15128
|
* List of Helm value files to use when generating a template.
|
|
14731
15129
|
*/
|
|
@@ -14734,6 +15132,16 @@ export declare namespace platform {
|
|
|
14734
15132
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
14735
15133
|
*/
|
|
14736
15134
|
values?: string;
|
|
15135
|
+
/**
|
|
15136
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
15137
|
+
*/
|
|
15138
|
+
valuesObject?: {
|
|
15139
|
+
[key: string]: string;
|
|
15140
|
+
};
|
|
15141
|
+
/**
|
|
15142
|
+
* Helm version to use for templating (either "2" or "3").
|
|
15143
|
+
*/
|
|
15144
|
+
version?: string;
|
|
14737
15145
|
}
|
|
14738
15146
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
14739
15147
|
/**
|
|
@@ -14969,7 +15377,7 @@ export declare namespace platform {
|
|
|
14969
15377
|
/**
|
|
14970
15378
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
14971
15379
|
*/
|
|
14972
|
-
revisionHistoryLimit
|
|
15380
|
+
revisionHistoryLimit: string;
|
|
14973
15381
|
/**
|
|
14974
15382
|
* Location of the application's manifests or chart.
|
|
14975
15383
|
*/
|
|
@@ -14987,7 +15395,7 @@ export declare namespace platform {
|
|
|
14987
15395
|
/**
|
|
14988
15396
|
* Name of the target cluster. Can be used instead of `server`.
|
|
14989
15397
|
*/
|
|
14990
|
-
name
|
|
15398
|
+
name: string;
|
|
14991
15399
|
/**
|
|
14992
15400
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
14993
15401
|
*/
|
|
@@ -15156,6 +15564,14 @@ export declare namespace platform {
|
|
|
15156
15564
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
15157
15565
|
*/
|
|
15158
15566
|
skipCrds?: boolean;
|
|
15567
|
+
/**
|
|
15568
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
15569
|
+
*/
|
|
15570
|
+
skipSchemaValidation?: boolean;
|
|
15571
|
+
/**
|
|
15572
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
15573
|
+
*/
|
|
15574
|
+
skipTests?: boolean;
|
|
15159
15575
|
/**
|
|
15160
15576
|
* List of Helm value files to use when generating a template.
|
|
15161
15577
|
*/
|
|
@@ -15164,6 +15580,16 @@ export declare namespace platform {
|
|
|
15164
15580
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
15165
15581
|
*/
|
|
15166
15582
|
values?: string;
|
|
15583
|
+
/**
|
|
15584
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
15585
|
+
*/
|
|
15586
|
+
valuesObject?: {
|
|
15587
|
+
[key: string]: string;
|
|
15588
|
+
};
|
|
15589
|
+
/**
|
|
15590
|
+
* Helm version to use for templating (either "2" or "3").
|
|
15591
|
+
*/
|
|
15592
|
+
version?: string;
|
|
15167
15593
|
}
|
|
15168
15594
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameter {
|
|
15169
15595
|
/**
|
|
@@ -15491,7 +15917,7 @@ export declare namespace platform {
|
|
|
15491
15917
|
/**
|
|
15492
15918
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
15493
15919
|
*/
|
|
15494
|
-
revisionHistoryLimit
|
|
15920
|
+
revisionHistoryLimit: string;
|
|
15495
15921
|
/**
|
|
15496
15922
|
* Location of the application's manifests or chart.
|
|
15497
15923
|
*/
|
|
@@ -15509,7 +15935,7 @@ export declare namespace platform {
|
|
|
15509
15935
|
/**
|
|
15510
15936
|
* Name of the target cluster. Can be used instead of `server`.
|
|
15511
15937
|
*/
|
|
15512
|
-
name
|
|
15938
|
+
name: string;
|
|
15513
15939
|
/**
|
|
15514
15940
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
15515
15941
|
*/
|
|
@@ -15678,6 +16104,14 @@ export declare namespace platform {
|
|
|
15678
16104
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
15679
16105
|
*/
|
|
15680
16106
|
skipCrds?: boolean;
|
|
16107
|
+
/**
|
|
16108
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
16109
|
+
*/
|
|
16110
|
+
skipSchemaValidation?: boolean;
|
|
16111
|
+
/**
|
|
16112
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
16113
|
+
*/
|
|
16114
|
+
skipTests?: boolean;
|
|
15681
16115
|
/**
|
|
15682
16116
|
* List of Helm value files to use when generating a template.
|
|
15683
16117
|
*/
|
|
@@ -15686,6 +16120,16 @@ export declare namespace platform {
|
|
|
15686
16120
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
15687
16121
|
*/
|
|
15688
16122
|
values?: string;
|
|
16123
|
+
/**
|
|
16124
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
16125
|
+
*/
|
|
16126
|
+
valuesObject?: {
|
|
16127
|
+
[key: string]: string;
|
|
16128
|
+
};
|
|
16129
|
+
/**
|
|
16130
|
+
* Helm version to use for templating (either "2" or "3").
|
|
16131
|
+
*/
|
|
16132
|
+
version?: string;
|
|
15689
16133
|
}
|
|
15690
16134
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
15691
16135
|
/**
|
|
@@ -15921,7 +16365,7 @@ export declare namespace platform {
|
|
|
15921
16365
|
/**
|
|
15922
16366
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
15923
16367
|
*/
|
|
15924
|
-
revisionHistoryLimit
|
|
16368
|
+
revisionHistoryLimit: string;
|
|
15925
16369
|
/**
|
|
15926
16370
|
* Location of the application's manifests or chart.
|
|
15927
16371
|
*/
|
|
@@ -15939,7 +16383,7 @@ export declare namespace platform {
|
|
|
15939
16383
|
/**
|
|
15940
16384
|
* Name of the target cluster. Can be used instead of `server`.
|
|
15941
16385
|
*/
|
|
15942
|
-
name
|
|
16386
|
+
name: string;
|
|
15943
16387
|
/**
|
|
15944
16388
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
15945
16389
|
*/
|
|
@@ -16108,6 +16552,14 @@ export declare namespace platform {
|
|
|
16108
16552
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
16109
16553
|
*/
|
|
16110
16554
|
skipCrds?: boolean;
|
|
16555
|
+
/**
|
|
16556
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
16557
|
+
*/
|
|
16558
|
+
skipSchemaValidation?: boolean;
|
|
16559
|
+
/**
|
|
16560
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
16561
|
+
*/
|
|
16562
|
+
skipTests?: boolean;
|
|
16111
16563
|
/**
|
|
16112
16564
|
* List of Helm value files to use when generating a template.
|
|
16113
16565
|
*/
|
|
@@ -16116,6 +16568,16 @@ export declare namespace platform {
|
|
|
16116
16568
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
16117
16569
|
*/
|
|
16118
16570
|
values?: string;
|
|
16571
|
+
/**
|
|
16572
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
16573
|
+
*/
|
|
16574
|
+
valuesObject?: {
|
|
16575
|
+
[key: string]: string;
|
|
16576
|
+
};
|
|
16577
|
+
/**
|
|
16578
|
+
* Helm version to use for templating (either "2" or "3").
|
|
16579
|
+
*/
|
|
16580
|
+
version?: string;
|
|
16119
16581
|
}
|
|
16120
16582
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
16121
16583
|
/**
|
|
@@ -16367,7 +16829,7 @@ export declare namespace platform {
|
|
|
16367
16829
|
/**
|
|
16368
16830
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
16369
16831
|
*/
|
|
16370
|
-
revisionHistoryLimit
|
|
16832
|
+
revisionHistoryLimit: string;
|
|
16371
16833
|
/**
|
|
16372
16834
|
* Location of the application's manifests or chart.
|
|
16373
16835
|
*/
|
|
@@ -16385,7 +16847,7 @@ export declare namespace platform {
|
|
|
16385
16847
|
/**
|
|
16386
16848
|
* Name of the target cluster. Can be used instead of `server`.
|
|
16387
16849
|
*/
|
|
16388
|
-
name
|
|
16850
|
+
name: string;
|
|
16389
16851
|
/**
|
|
16390
16852
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
16391
16853
|
*/
|
|
@@ -16554,6 +17016,14 @@ export declare namespace platform {
|
|
|
16554
17016
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
16555
17017
|
*/
|
|
16556
17018
|
skipCrds?: boolean;
|
|
17019
|
+
/**
|
|
17020
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
17021
|
+
*/
|
|
17022
|
+
skipSchemaValidation?: boolean;
|
|
17023
|
+
/**
|
|
17024
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
17025
|
+
*/
|
|
17026
|
+
skipTests?: boolean;
|
|
16557
17027
|
/**
|
|
16558
17028
|
* List of Helm value files to use when generating a template.
|
|
16559
17029
|
*/
|
|
@@ -16562,6 +17032,16 @@ export declare namespace platform {
|
|
|
16562
17032
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
16563
17033
|
*/
|
|
16564
17034
|
values?: string;
|
|
17035
|
+
/**
|
|
17036
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
17037
|
+
*/
|
|
17038
|
+
valuesObject?: {
|
|
17039
|
+
[key: string]: string;
|
|
17040
|
+
};
|
|
17041
|
+
/**
|
|
17042
|
+
* Helm version to use for templating (either "2" or "3").
|
|
17043
|
+
*/
|
|
17044
|
+
version?: string;
|
|
16565
17045
|
}
|
|
16566
17046
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
16567
17047
|
/**
|
|
@@ -16717,7 +17197,7 @@ export declare namespace platform {
|
|
|
16717
17197
|
}
|
|
16718
17198
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorList {
|
|
16719
17199
|
/**
|
|
16720
|
-
* List of key/value pairs to pass as parameters into the template
|
|
17200
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
16721
17201
|
*/
|
|
16722
17202
|
elements: {
|
|
16723
17203
|
[key: string]: string;
|
|
@@ -16783,7 +17263,7 @@ export declare namespace platform {
|
|
|
16783
17263
|
/**
|
|
16784
17264
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
16785
17265
|
*/
|
|
16786
|
-
revisionHistoryLimit
|
|
17266
|
+
revisionHistoryLimit: string;
|
|
16787
17267
|
/**
|
|
16788
17268
|
* Location of the application's manifests or chart.
|
|
16789
17269
|
*/
|
|
@@ -16801,7 +17281,7 @@ export declare namespace platform {
|
|
|
16801
17281
|
/**
|
|
16802
17282
|
* Name of the target cluster. Can be used instead of `server`.
|
|
16803
17283
|
*/
|
|
16804
|
-
name
|
|
17284
|
+
name: string;
|
|
16805
17285
|
/**
|
|
16806
17286
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
16807
17287
|
*/
|
|
@@ -16970,6 +17450,14 @@ export declare namespace platform {
|
|
|
16970
17450
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
16971
17451
|
*/
|
|
16972
17452
|
skipCrds?: boolean;
|
|
17453
|
+
/**
|
|
17454
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
17455
|
+
*/
|
|
17456
|
+
skipSchemaValidation?: boolean;
|
|
17457
|
+
/**
|
|
17458
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
17459
|
+
*/
|
|
17460
|
+
skipTests?: boolean;
|
|
16973
17461
|
/**
|
|
16974
17462
|
* List of Helm value files to use when generating a template.
|
|
16975
17463
|
*/
|
|
@@ -16978,6 +17466,16 @@ export declare namespace platform {
|
|
|
16978
17466
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
16979
17467
|
*/
|
|
16980
17468
|
values?: string;
|
|
17469
|
+
/**
|
|
17470
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
17471
|
+
*/
|
|
17472
|
+
valuesObject?: {
|
|
17473
|
+
[key: string]: string;
|
|
17474
|
+
};
|
|
17475
|
+
/**
|
|
17476
|
+
* Helm version to use for templating (either "2" or "3").
|
|
17477
|
+
*/
|
|
17478
|
+
version?: string;
|
|
16981
17479
|
}
|
|
16982
17480
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
16983
17481
|
/**
|
|
@@ -17361,7 +17859,7 @@ export declare namespace platform {
|
|
|
17361
17859
|
/**
|
|
17362
17860
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
17363
17861
|
*/
|
|
17364
|
-
revisionHistoryLimit
|
|
17862
|
+
revisionHistoryLimit: string;
|
|
17365
17863
|
/**
|
|
17366
17864
|
* Location of the application's manifests or chart.
|
|
17367
17865
|
*/
|
|
@@ -17379,7 +17877,7 @@ export declare namespace platform {
|
|
|
17379
17877
|
/**
|
|
17380
17878
|
* Name of the target cluster. Can be used instead of `server`.
|
|
17381
17879
|
*/
|
|
17382
|
-
name
|
|
17880
|
+
name: string;
|
|
17383
17881
|
/**
|
|
17384
17882
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
17385
17883
|
*/
|
|
@@ -17548,6 +18046,14 @@ export declare namespace platform {
|
|
|
17548
18046
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
17549
18047
|
*/
|
|
17550
18048
|
skipCrds?: boolean;
|
|
18049
|
+
/**
|
|
18050
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
18051
|
+
*/
|
|
18052
|
+
skipSchemaValidation?: boolean;
|
|
18053
|
+
/**
|
|
18054
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
18055
|
+
*/
|
|
18056
|
+
skipTests?: boolean;
|
|
17551
18057
|
/**
|
|
17552
18058
|
* List of Helm value files to use when generating a template.
|
|
17553
18059
|
*/
|
|
@@ -17556,6 +18062,16 @@ export declare namespace platform {
|
|
|
17556
18062
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
17557
18063
|
*/
|
|
17558
18064
|
values?: string;
|
|
18065
|
+
/**
|
|
18066
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
18067
|
+
*/
|
|
18068
|
+
valuesObject?: {
|
|
18069
|
+
[key: string]: string;
|
|
18070
|
+
};
|
|
18071
|
+
/**
|
|
18072
|
+
* Helm version to use for templating (either "2" or "3").
|
|
18073
|
+
*/
|
|
18074
|
+
version?: string;
|
|
17559
18075
|
}
|
|
17560
18076
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
17561
18077
|
/**
|
|
@@ -18023,7 +18539,7 @@ export declare namespace platform {
|
|
|
18023
18539
|
/**
|
|
18024
18540
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
18025
18541
|
*/
|
|
18026
|
-
revisionHistoryLimit
|
|
18542
|
+
revisionHistoryLimit: string;
|
|
18027
18543
|
/**
|
|
18028
18544
|
* Location of the application's manifests or chart.
|
|
18029
18545
|
*/
|
|
@@ -18041,7 +18557,7 @@ export declare namespace platform {
|
|
|
18041
18557
|
/**
|
|
18042
18558
|
* Name of the target cluster. Can be used instead of `server`.
|
|
18043
18559
|
*/
|
|
18044
|
-
name
|
|
18560
|
+
name: string;
|
|
18045
18561
|
/**
|
|
18046
18562
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
18047
18563
|
*/
|
|
@@ -18210,6 +18726,14 @@ export declare namespace platform {
|
|
|
18210
18726
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
18211
18727
|
*/
|
|
18212
18728
|
skipCrds?: boolean;
|
|
18729
|
+
/**
|
|
18730
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
18731
|
+
*/
|
|
18732
|
+
skipSchemaValidation?: boolean;
|
|
18733
|
+
/**
|
|
18734
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
18735
|
+
*/
|
|
18736
|
+
skipTests?: boolean;
|
|
18213
18737
|
/**
|
|
18214
18738
|
* List of Helm value files to use when generating a template.
|
|
18215
18739
|
*/
|
|
@@ -18218,6 +18742,16 @@ export declare namespace platform {
|
|
|
18218
18742
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
18219
18743
|
*/
|
|
18220
18744
|
values?: string;
|
|
18745
|
+
/**
|
|
18746
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
18747
|
+
*/
|
|
18748
|
+
valuesObject?: {
|
|
18749
|
+
[key: string]: string;
|
|
18750
|
+
};
|
|
18751
|
+
/**
|
|
18752
|
+
* Helm version to use for templating (either "2" or "3").
|
|
18753
|
+
*/
|
|
18754
|
+
version?: string;
|
|
18221
18755
|
}
|
|
18222
18756
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
18223
18757
|
/**
|
|
@@ -18453,7 +18987,7 @@ export declare namespace platform {
|
|
|
18453
18987
|
/**
|
|
18454
18988
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
18455
18989
|
*/
|
|
18456
|
-
revisionHistoryLimit
|
|
18990
|
+
revisionHistoryLimit: string;
|
|
18457
18991
|
/**
|
|
18458
18992
|
* Location of the application's manifests or chart.
|
|
18459
18993
|
*/
|
|
@@ -18471,7 +19005,7 @@ export declare namespace platform {
|
|
|
18471
19005
|
/**
|
|
18472
19006
|
* Name of the target cluster. Can be used instead of `server`.
|
|
18473
19007
|
*/
|
|
18474
|
-
name
|
|
19008
|
+
name: string;
|
|
18475
19009
|
/**
|
|
18476
19010
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
18477
19011
|
*/
|
|
@@ -18640,14 +19174,32 @@ export declare namespace platform {
|
|
|
18640
19174
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
18641
19175
|
*/
|
|
18642
19176
|
skipCrds?: boolean;
|
|
19177
|
+
/**
|
|
19178
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
19179
|
+
*/
|
|
19180
|
+
skipSchemaValidation?: boolean;
|
|
19181
|
+
/**
|
|
19182
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
19183
|
+
*/
|
|
19184
|
+
skipTests?: boolean;
|
|
18643
19185
|
/**
|
|
18644
19186
|
* List of Helm value files to use when generating a template.
|
|
18645
19187
|
*/
|
|
18646
19188
|
valueFiles?: string[];
|
|
18647
19189
|
/**
|
|
18648
|
-
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19190
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19191
|
+
*/
|
|
19192
|
+
values?: string;
|
|
19193
|
+
/**
|
|
19194
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19195
|
+
*/
|
|
19196
|
+
valuesObject?: {
|
|
19197
|
+
[key: string]: string;
|
|
19198
|
+
};
|
|
19199
|
+
/**
|
|
19200
|
+
* Helm version to use for templating (either "2" or "3").
|
|
18649
19201
|
*/
|
|
18650
|
-
|
|
19202
|
+
version?: string;
|
|
18651
19203
|
}
|
|
18652
19204
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameter {
|
|
18653
19205
|
/**
|
|
@@ -19031,7 +19583,7 @@ export declare namespace platform {
|
|
|
19031
19583
|
/**
|
|
19032
19584
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
19033
19585
|
*/
|
|
19034
|
-
revisionHistoryLimit
|
|
19586
|
+
revisionHistoryLimit: string;
|
|
19035
19587
|
/**
|
|
19036
19588
|
* Location of the application's manifests or chart.
|
|
19037
19589
|
*/
|
|
@@ -19049,7 +19601,7 @@ export declare namespace platform {
|
|
|
19049
19601
|
/**
|
|
19050
19602
|
* Name of the target cluster. Can be used instead of `server`.
|
|
19051
19603
|
*/
|
|
19052
|
-
name
|
|
19604
|
+
name: string;
|
|
19053
19605
|
/**
|
|
19054
19606
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
19055
19607
|
*/
|
|
@@ -19218,6 +19770,14 @@ export declare namespace platform {
|
|
|
19218
19770
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
19219
19771
|
*/
|
|
19220
19772
|
skipCrds?: boolean;
|
|
19773
|
+
/**
|
|
19774
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
19775
|
+
*/
|
|
19776
|
+
skipSchemaValidation?: boolean;
|
|
19777
|
+
/**
|
|
19778
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
19779
|
+
*/
|
|
19780
|
+
skipTests?: boolean;
|
|
19221
19781
|
/**
|
|
19222
19782
|
* List of Helm value files to use when generating a template.
|
|
19223
19783
|
*/
|
|
@@ -19226,6 +19786,16 @@ export declare namespace platform {
|
|
|
19226
19786
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19227
19787
|
*/
|
|
19228
19788
|
values?: string;
|
|
19789
|
+
/**
|
|
19790
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19791
|
+
*/
|
|
19792
|
+
valuesObject?: {
|
|
19793
|
+
[key: string]: string;
|
|
19794
|
+
};
|
|
19795
|
+
/**
|
|
19796
|
+
* Helm version to use for templating (either "2" or "3").
|
|
19797
|
+
*/
|
|
19798
|
+
version?: string;
|
|
19229
19799
|
}
|
|
19230
19800
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
19231
19801
|
/**
|
|
@@ -19693,7 +20263,7 @@ export declare namespace platform {
|
|
|
19693
20263
|
/**
|
|
19694
20264
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
19695
20265
|
*/
|
|
19696
|
-
revisionHistoryLimit
|
|
20266
|
+
revisionHistoryLimit: string;
|
|
19697
20267
|
/**
|
|
19698
20268
|
* Location of the application's manifests or chart.
|
|
19699
20269
|
*/
|
|
@@ -19711,7 +20281,7 @@ export declare namespace platform {
|
|
|
19711
20281
|
/**
|
|
19712
20282
|
* Name of the target cluster. Can be used instead of `server`.
|
|
19713
20283
|
*/
|
|
19714
|
-
name
|
|
20284
|
+
name: string;
|
|
19715
20285
|
/**
|
|
19716
20286
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
19717
20287
|
*/
|
|
@@ -19880,6 +20450,14 @@ export declare namespace platform {
|
|
|
19880
20450
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
19881
20451
|
*/
|
|
19882
20452
|
skipCrds?: boolean;
|
|
20453
|
+
/**
|
|
20454
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
20455
|
+
*/
|
|
20456
|
+
skipSchemaValidation?: boolean;
|
|
20457
|
+
/**
|
|
20458
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
20459
|
+
*/
|
|
20460
|
+
skipTests?: boolean;
|
|
19883
20461
|
/**
|
|
19884
20462
|
* List of Helm value files to use when generating a template.
|
|
19885
20463
|
*/
|
|
@@ -19888,6 +20466,16 @@ export declare namespace platform {
|
|
|
19888
20466
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19889
20467
|
*/
|
|
19890
20468
|
values?: string;
|
|
20469
|
+
/**
|
|
20470
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20471
|
+
*/
|
|
20472
|
+
valuesObject?: {
|
|
20473
|
+
[key: string]: string;
|
|
20474
|
+
};
|
|
20475
|
+
/**
|
|
20476
|
+
* Helm version to use for templating (either "2" or "3").
|
|
20477
|
+
*/
|
|
20478
|
+
version?: string;
|
|
19891
20479
|
}
|
|
19892
20480
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
19893
20481
|
/**
|
|
@@ -20123,7 +20711,7 @@ export declare namespace platform {
|
|
|
20123
20711
|
/**
|
|
20124
20712
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
20125
20713
|
*/
|
|
20126
|
-
revisionHistoryLimit
|
|
20714
|
+
revisionHistoryLimit: string;
|
|
20127
20715
|
/**
|
|
20128
20716
|
* Location of the application's manifests or chart.
|
|
20129
20717
|
*/
|
|
@@ -20141,7 +20729,7 @@ export declare namespace platform {
|
|
|
20141
20729
|
/**
|
|
20142
20730
|
* Name of the target cluster. Can be used instead of `server`.
|
|
20143
20731
|
*/
|
|
20144
|
-
name
|
|
20732
|
+
name: string;
|
|
20145
20733
|
/**
|
|
20146
20734
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
20147
20735
|
*/
|
|
@@ -20310,6 +20898,14 @@ export declare namespace platform {
|
|
|
20310
20898
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
20311
20899
|
*/
|
|
20312
20900
|
skipCrds?: boolean;
|
|
20901
|
+
/**
|
|
20902
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
20903
|
+
*/
|
|
20904
|
+
skipSchemaValidation?: boolean;
|
|
20905
|
+
/**
|
|
20906
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
20907
|
+
*/
|
|
20908
|
+
skipTests?: boolean;
|
|
20313
20909
|
/**
|
|
20314
20910
|
* List of Helm value files to use when generating a template.
|
|
20315
20911
|
*/
|
|
@@ -20318,6 +20914,16 @@ export declare namespace platform {
|
|
|
20318
20914
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20319
20915
|
*/
|
|
20320
20916
|
values?: string;
|
|
20917
|
+
/**
|
|
20918
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20919
|
+
*/
|
|
20920
|
+
valuesObject?: {
|
|
20921
|
+
[key: string]: string;
|
|
20922
|
+
};
|
|
20923
|
+
/**
|
|
20924
|
+
* Helm version to use for templating (either "2" or "3").
|
|
20925
|
+
*/
|
|
20926
|
+
version?: string;
|
|
20321
20927
|
}
|
|
20322
20928
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameter {
|
|
20323
20929
|
/**
|
|
@@ -20653,7 +21259,7 @@ export declare namespace platform {
|
|
|
20653
21259
|
/**
|
|
20654
21260
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
20655
21261
|
*/
|
|
20656
|
-
revisionHistoryLimit
|
|
21262
|
+
revisionHistoryLimit: string;
|
|
20657
21263
|
/**
|
|
20658
21264
|
* Location of the application's manifests or chart.
|
|
20659
21265
|
*/
|
|
@@ -20671,7 +21277,7 @@ export declare namespace platform {
|
|
|
20671
21277
|
/**
|
|
20672
21278
|
* Name of the target cluster. Can be used instead of `server`.
|
|
20673
21279
|
*/
|
|
20674
|
-
name
|
|
21280
|
+
name: string;
|
|
20675
21281
|
/**
|
|
20676
21282
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
20677
21283
|
*/
|
|
@@ -20840,6 +21446,14 @@ export declare namespace platform {
|
|
|
20840
21446
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
20841
21447
|
*/
|
|
20842
21448
|
skipCrds?: boolean;
|
|
21449
|
+
/**
|
|
21450
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
21451
|
+
*/
|
|
21452
|
+
skipSchemaValidation?: boolean;
|
|
21453
|
+
/**
|
|
21454
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
21455
|
+
*/
|
|
21456
|
+
skipTests?: boolean;
|
|
20843
21457
|
/**
|
|
20844
21458
|
* List of Helm value files to use when generating a template.
|
|
20845
21459
|
*/
|
|
@@ -20848,6 +21462,16 @@ export declare namespace platform {
|
|
|
20848
21462
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20849
21463
|
*/
|
|
20850
21464
|
values?: string;
|
|
21465
|
+
/**
|
|
21466
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
21467
|
+
*/
|
|
21468
|
+
valuesObject?: {
|
|
21469
|
+
[key: string]: string;
|
|
21470
|
+
};
|
|
21471
|
+
/**
|
|
21472
|
+
* Helm version to use for templating (either "2" or "3").
|
|
21473
|
+
*/
|
|
21474
|
+
version?: string;
|
|
20851
21475
|
}
|
|
20852
21476
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
20853
21477
|
/**
|
|
@@ -21083,7 +21707,7 @@ export declare namespace platform {
|
|
|
21083
21707
|
/**
|
|
21084
21708
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
21085
21709
|
*/
|
|
21086
|
-
revisionHistoryLimit
|
|
21710
|
+
revisionHistoryLimit: string;
|
|
21087
21711
|
/**
|
|
21088
21712
|
* Location of the application's manifests or chart.
|
|
21089
21713
|
*/
|
|
@@ -21101,7 +21725,7 @@ export declare namespace platform {
|
|
|
21101
21725
|
/**
|
|
21102
21726
|
* Name of the target cluster. Can be used instead of `server`.
|
|
21103
21727
|
*/
|
|
21104
|
-
name
|
|
21728
|
+
name: string;
|
|
21105
21729
|
/**
|
|
21106
21730
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
21107
21731
|
*/
|
|
@@ -21270,6 +21894,14 @@ export declare namespace platform {
|
|
|
21270
21894
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
21271
21895
|
*/
|
|
21272
21896
|
skipCrds?: boolean;
|
|
21897
|
+
/**
|
|
21898
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
21899
|
+
*/
|
|
21900
|
+
skipSchemaValidation?: boolean;
|
|
21901
|
+
/**
|
|
21902
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
21903
|
+
*/
|
|
21904
|
+
skipTests?: boolean;
|
|
21273
21905
|
/**
|
|
21274
21906
|
* List of Helm value files to use when generating a template.
|
|
21275
21907
|
*/
|
|
@@ -21278,6 +21910,16 @@ export declare namespace platform {
|
|
|
21278
21910
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
21279
21911
|
*/
|
|
21280
21912
|
values?: string;
|
|
21913
|
+
/**
|
|
21914
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
21915
|
+
*/
|
|
21916
|
+
valuesObject?: {
|
|
21917
|
+
[key: string]: string;
|
|
21918
|
+
};
|
|
21919
|
+
/**
|
|
21920
|
+
* Helm version to use for templating (either "2" or "3").
|
|
21921
|
+
*/
|
|
21922
|
+
version?: string;
|
|
21281
21923
|
}
|
|
21282
21924
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
21283
21925
|
/**
|
|
@@ -21529,7 +22171,7 @@ export declare namespace platform {
|
|
|
21529
22171
|
/**
|
|
21530
22172
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
21531
22173
|
*/
|
|
21532
|
-
revisionHistoryLimit
|
|
22174
|
+
revisionHistoryLimit: string;
|
|
21533
22175
|
/**
|
|
21534
22176
|
* Location of the application's manifests or chart.
|
|
21535
22177
|
*/
|
|
@@ -21547,7 +22189,7 @@ export declare namespace platform {
|
|
|
21547
22189
|
/**
|
|
21548
22190
|
* Name of the target cluster. Can be used instead of `server`.
|
|
21549
22191
|
*/
|
|
21550
|
-
name
|
|
22192
|
+
name: string;
|
|
21551
22193
|
/**
|
|
21552
22194
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
21553
22195
|
*/
|
|
@@ -21716,6 +22358,14 @@ export declare namespace platform {
|
|
|
21716
22358
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
21717
22359
|
*/
|
|
21718
22360
|
skipCrds?: boolean;
|
|
22361
|
+
/**
|
|
22362
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
22363
|
+
*/
|
|
22364
|
+
skipSchemaValidation?: boolean;
|
|
22365
|
+
/**
|
|
22366
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
22367
|
+
*/
|
|
22368
|
+
skipTests?: boolean;
|
|
21719
22369
|
/**
|
|
21720
22370
|
* List of Helm value files to use when generating a template.
|
|
21721
22371
|
*/
|
|
@@ -21724,6 +22374,16 @@ export declare namespace platform {
|
|
|
21724
22374
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
21725
22375
|
*/
|
|
21726
22376
|
values?: string;
|
|
22377
|
+
/**
|
|
22378
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
22379
|
+
*/
|
|
22380
|
+
valuesObject?: {
|
|
22381
|
+
[key: string]: string;
|
|
22382
|
+
};
|
|
22383
|
+
/**
|
|
22384
|
+
* Helm version to use for templating (either "2" or "3").
|
|
22385
|
+
*/
|
|
22386
|
+
version?: string;
|
|
21727
22387
|
}
|
|
21728
22388
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
21729
22389
|
/**
|
|
@@ -21879,7 +22539,7 @@ export declare namespace platform {
|
|
|
21879
22539
|
}
|
|
21880
22540
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorList {
|
|
21881
22541
|
/**
|
|
21882
|
-
* List of key/value pairs to pass as parameters into the template
|
|
22542
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
21883
22543
|
*/
|
|
21884
22544
|
elements: {
|
|
21885
22545
|
[key: string]: string;
|
|
@@ -21945,7 +22605,7 @@ export declare namespace platform {
|
|
|
21945
22605
|
/**
|
|
21946
22606
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
21947
22607
|
*/
|
|
21948
|
-
revisionHistoryLimit
|
|
22608
|
+
revisionHistoryLimit: string;
|
|
21949
22609
|
/**
|
|
21950
22610
|
* Location of the application's manifests or chart.
|
|
21951
22611
|
*/
|
|
@@ -21963,7 +22623,7 @@ export declare namespace platform {
|
|
|
21963
22623
|
/**
|
|
21964
22624
|
* Name of the target cluster. Can be used instead of `server`.
|
|
21965
22625
|
*/
|
|
21966
|
-
name
|
|
22626
|
+
name: string;
|
|
21967
22627
|
/**
|
|
21968
22628
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
21969
22629
|
*/
|
|
@@ -22132,6 +22792,14 @@ export declare namespace platform {
|
|
|
22132
22792
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
22133
22793
|
*/
|
|
22134
22794
|
skipCrds?: boolean;
|
|
22795
|
+
/**
|
|
22796
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
22797
|
+
*/
|
|
22798
|
+
skipSchemaValidation?: boolean;
|
|
22799
|
+
/**
|
|
22800
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
22801
|
+
*/
|
|
22802
|
+
skipTests?: boolean;
|
|
22135
22803
|
/**
|
|
22136
22804
|
* List of Helm value files to use when generating a template.
|
|
22137
22805
|
*/
|
|
@@ -22140,6 +22808,16 @@ export declare namespace platform {
|
|
|
22140
22808
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
22141
22809
|
*/
|
|
22142
22810
|
values?: string;
|
|
22811
|
+
/**
|
|
22812
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
22813
|
+
*/
|
|
22814
|
+
valuesObject?: {
|
|
22815
|
+
[key: string]: string;
|
|
22816
|
+
};
|
|
22817
|
+
/**
|
|
22818
|
+
* Helm version to use for templating (either "2" or "3").
|
|
22819
|
+
*/
|
|
22820
|
+
version?: string;
|
|
22143
22821
|
}
|
|
22144
22822
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
22145
22823
|
/**
|
|
@@ -22463,7 +23141,7 @@ export declare namespace platform {
|
|
|
22463
23141
|
/**
|
|
22464
23142
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
22465
23143
|
*/
|
|
22466
|
-
revisionHistoryLimit
|
|
23144
|
+
revisionHistoryLimit: string;
|
|
22467
23145
|
/**
|
|
22468
23146
|
* Location of the application's manifests or chart.
|
|
22469
23147
|
*/
|
|
@@ -22481,7 +23159,7 @@ export declare namespace platform {
|
|
|
22481
23159
|
/**
|
|
22482
23160
|
* Name of the target cluster. Can be used instead of `server`.
|
|
22483
23161
|
*/
|
|
22484
|
-
name
|
|
23162
|
+
name: string;
|
|
22485
23163
|
/**
|
|
22486
23164
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
22487
23165
|
*/
|
|
@@ -22650,6 +23328,14 @@ export declare namespace platform {
|
|
|
22650
23328
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
22651
23329
|
*/
|
|
22652
23330
|
skipCrds?: boolean;
|
|
23331
|
+
/**
|
|
23332
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
23333
|
+
*/
|
|
23334
|
+
skipSchemaValidation?: boolean;
|
|
23335
|
+
/**
|
|
23336
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
23337
|
+
*/
|
|
23338
|
+
skipTests?: boolean;
|
|
22653
23339
|
/**
|
|
22654
23340
|
* List of Helm value files to use when generating a template.
|
|
22655
23341
|
*/
|
|
@@ -22658,6 +23344,16 @@ export declare namespace platform {
|
|
|
22658
23344
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
22659
23345
|
*/
|
|
22660
23346
|
values?: string;
|
|
23347
|
+
/**
|
|
23348
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23349
|
+
*/
|
|
23350
|
+
valuesObject?: {
|
|
23351
|
+
[key: string]: string;
|
|
23352
|
+
};
|
|
23353
|
+
/**
|
|
23354
|
+
* Helm version to use for templating (either "2" or "3").
|
|
23355
|
+
*/
|
|
23356
|
+
version?: string;
|
|
22661
23357
|
}
|
|
22662
23358
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
22663
23359
|
/**
|
|
@@ -22893,7 +23589,7 @@ export declare namespace platform {
|
|
|
22893
23589
|
/**
|
|
22894
23590
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
22895
23591
|
*/
|
|
22896
|
-
revisionHistoryLimit
|
|
23592
|
+
revisionHistoryLimit: string;
|
|
22897
23593
|
/**
|
|
22898
23594
|
* Location of the application's manifests or chart.
|
|
22899
23595
|
*/
|
|
@@ -22911,7 +23607,7 @@ export declare namespace platform {
|
|
|
22911
23607
|
/**
|
|
22912
23608
|
* Name of the target cluster. Can be used instead of `server`.
|
|
22913
23609
|
*/
|
|
22914
|
-
name
|
|
23610
|
+
name: string;
|
|
22915
23611
|
/**
|
|
22916
23612
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
22917
23613
|
*/
|
|
@@ -23080,6 +23776,14 @@ export declare namespace platform {
|
|
|
23080
23776
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
23081
23777
|
*/
|
|
23082
23778
|
skipCrds?: boolean;
|
|
23779
|
+
/**
|
|
23780
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
23781
|
+
*/
|
|
23782
|
+
skipSchemaValidation?: boolean;
|
|
23783
|
+
/**
|
|
23784
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
23785
|
+
*/
|
|
23786
|
+
skipTests?: boolean;
|
|
23083
23787
|
/**
|
|
23084
23788
|
* List of Helm value files to use when generating a template.
|
|
23085
23789
|
*/
|
|
@@ -23088,6 +23792,16 @@ export declare namespace platform {
|
|
|
23088
23792
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23089
23793
|
*/
|
|
23090
23794
|
values?: string;
|
|
23795
|
+
/**
|
|
23796
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23797
|
+
*/
|
|
23798
|
+
valuesObject?: {
|
|
23799
|
+
[key: string]: string;
|
|
23800
|
+
};
|
|
23801
|
+
/**
|
|
23802
|
+
* Helm version to use for templating (either "2" or "3").
|
|
23803
|
+
*/
|
|
23804
|
+
version?: string;
|
|
23091
23805
|
}
|
|
23092
23806
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
23093
23807
|
/**
|
|
@@ -23339,7 +24053,7 @@ export declare namespace platform {
|
|
|
23339
24053
|
/**
|
|
23340
24054
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
23341
24055
|
*/
|
|
23342
|
-
revisionHistoryLimit
|
|
24056
|
+
revisionHistoryLimit: string;
|
|
23343
24057
|
/**
|
|
23344
24058
|
* Location of the application's manifests or chart.
|
|
23345
24059
|
*/
|
|
@@ -23357,7 +24071,7 @@ export declare namespace platform {
|
|
|
23357
24071
|
/**
|
|
23358
24072
|
* Name of the target cluster. Can be used instead of `server`.
|
|
23359
24073
|
*/
|
|
23360
|
-
name
|
|
24074
|
+
name: string;
|
|
23361
24075
|
/**
|
|
23362
24076
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
23363
24077
|
*/
|
|
@@ -23526,6 +24240,14 @@ export declare namespace platform {
|
|
|
23526
24240
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
23527
24241
|
*/
|
|
23528
24242
|
skipCrds?: boolean;
|
|
24243
|
+
/**
|
|
24244
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
24245
|
+
*/
|
|
24246
|
+
skipSchemaValidation?: boolean;
|
|
24247
|
+
/**
|
|
24248
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
24249
|
+
*/
|
|
24250
|
+
skipTests?: boolean;
|
|
23529
24251
|
/**
|
|
23530
24252
|
* List of Helm value files to use when generating a template.
|
|
23531
24253
|
*/
|
|
@@ -23534,6 +24256,16 @@ export declare namespace platform {
|
|
|
23534
24256
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23535
24257
|
*/
|
|
23536
24258
|
values?: string;
|
|
24259
|
+
/**
|
|
24260
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
24261
|
+
*/
|
|
24262
|
+
valuesObject?: {
|
|
24263
|
+
[key: string]: string;
|
|
24264
|
+
};
|
|
24265
|
+
/**
|
|
24266
|
+
* Helm version to use for templating (either "2" or "3").
|
|
24267
|
+
*/
|
|
24268
|
+
version?: string;
|
|
23537
24269
|
}
|
|
23538
24270
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
23539
24271
|
/**
|
|
@@ -23689,7 +24421,7 @@ export declare namespace platform {
|
|
|
23689
24421
|
}
|
|
23690
24422
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorList {
|
|
23691
24423
|
/**
|
|
23692
|
-
* List of key/value pairs to pass as parameters into the template
|
|
24424
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
23693
24425
|
*/
|
|
23694
24426
|
elements: {
|
|
23695
24427
|
[key: string]: string;
|
|
@@ -23755,7 +24487,7 @@ export declare namespace platform {
|
|
|
23755
24487
|
/**
|
|
23756
24488
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
23757
24489
|
*/
|
|
23758
|
-
revisionHistoryLimit
|
|
24490
|
+
revisionHistoryLimit: string;
|
|
23759
24491
|
/**
|
|
23760
24492
|
* Location of the application's manifests or chart.
|
|
23761
24493
|
*/
|
|
@@ -23773,7 +24505,7 @@ export declare namespace platform {
|
|
|
23773
24505
|
/**
|
|
23774
24506
|
* Name of the target cluster. Can be used instead of `server`.
|
|
23775
24507
|
*/
|
|
23776
|
-
name
|
|
24508
|
+
name: string;
|
|
23777
24509
|
/**
|
|
23778
24510
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
23779
24511
|
*/
|
|
@@ -23942,6 +24674,14 @@ export declare namespace platform {
|
|
|
23942
24674
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
23943
24675
|
*/
|
|
23944
24676
|
skipCrds?: boolean;
|
|
24677
|
+
/**
|
|
24678
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
24679
|
+
*/
|
|
24680
|
+
skipSchemaValidation?: boolean;
|
|
24681
|
+
/**
|
|
24682
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
24683
|
+
*/
|
|
24684
|
+
skipTests?: boolean;
|
|
23945
24685
|
/**
|
|
23946
24686
|
* List of Helm value files to use when generating a template.
|
|
23947
24687
|
*/
|
|
@@ -23950,6 +24690,16 @@ export declare namespace platform {
|
|
|
23950
24690
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23951
24691
|
*/
|
|
23952
24692
|
values?: string;
|
|
24693
|
+
/**
|
|
24694
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
24695
|
+
*/
|
|
24696
|
+
valuesObject?: {
|
|
24697
|
+
[key: string]: string;
|
|
24698
|
+
};
|
|
24699
|
+
/**
|
|
24700
|
+
* Helm version to use for templating (either "2" or "3").
|
|
24701
|
+
*/
|
|
24702
|
+
version?: string;
|
|
23953
24703
|
}
|
|
23954
24704
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
23955
24705
|
/**
|
|
@@ -24333,7 +25083,7 @@ export declare namespace platform {
|
|
|
24333
25083
|
/**
|
|
24334
25084
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
24335
25085
|
*/
|
|
24336
|
-
revisionHistoryLimit
|
|
25086
|
+
revisionHistoryLimit: string;
|
|
24337
25087
|
/**
|
|
24338
25088
|
* Location of the application's manifests or chart.
|
|
24339
25089
|
*/
|
|
@@ -24351,7 +25101,7 @@ export declare namespace platform {
|
|
|
24351
25101
|
/**
|
|
24352
25102
|
* Name of the target cluster. Can be used instead of `server`.
|
|
24353
25103
|
*/
|
|
24354
|
-
name
|
|
25104
|
+
name: string;
|
|
24355
25105
|
/**
|
|
24356
25106
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
24357
25107
|
*/
|
|
@@ -24520,6 +25270,14 @@ export declare namespace platform {
|
|
|
24520
25270
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
24521
25271
|
*/
|
|
24522
25272
|
skipCrds?: boolean;
|
|
25273
|
+
/**
|
|
25274
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
25275
|
+
*/
|
|
25276
|
+
skipSchemaValidation?: boolean;
|
|
25277
|
+
/**
|
|
25278
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
25279
|
+
*/
|
|
25280
|
+
skipTests?: boolean;
|
|
24523
25281
|
/**
|
|
24524
25282
|
* List of Helm value files to use when generating a template.
|
|
24525
25283
|
*/
|
|
@@ -24528,6 +25286,16 @@ export declare namespace platform {
|
|
|
24528
25286
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
24529
25287
|
*/
|
|
24530
25288
|
values?: string;
|
|
25289
|
+
/**
|
|
25290
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
25291
|
+
*/
|
|
25292
|
+
valuesObject?: {
|
|
25293
|
+
[key: string]: string;
|
|
25294
|
+
};
|
|
25295
|
+
/**
|
|
25296
|
+
* Helm version to use for templating (either "2" or "3").
|
|
25297
|
+
*/
|
|
25298
|
+
version?: string;
|
|
24531
25299
|
}
|
|
24532
25300
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
24533
25301
|
/**
|
|
@@ -24995,7 +25763,7 @@ export declare namespace platform {
|
|
|
24995
25763
|
/**
|
|
24996
25764
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
24997
25765
|
*/
|
|
24998
|
-
revisionHistoryLimit
|
|
25766
|
+
revisionHistoryLimit: string;
|
|
24999
25767
|
/**
|
|
25000
25768
|
* Location of the application's manifests or chart.
|
|
25001
25769
|
*/
|
|
@@ -25013,7 +25781,7 @@ export declare namespace platform {
|
|
|
25013
25781
|
/**
|
|
25014
25782
|
* Name of the target cluster. Can be used instead of `server`.
|
|
25015
25783
|
*/
|
|
25016
|
-
name
|
|
25784
|
+
name: string;
|
|
25017
25785
|
/**
|
|
25018
25786
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
25019
25787
|
*/
|
|
@@ -25182,6 +25950,14 @@ export declare namespace platform {
|
|
|
25182
25950
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
25183
25951
|
*/
|
|
25184
25952
|
skipCrds?: boolean;
|
|
25953
|
+
/**
|
|
25954
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
25955
|
+
*/
|
|
25956
|
+
skipSchemaValidation?: boolean;
|
|
25957
|
+
/**
|
|
25958
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
25959
|
+
*/
|
|
25960
|
+
skipTests?: boolean;
|
|
25185
25961
|
/**
|
|
25186
25962
|
* List of Helm value files to use when generating a template.
|
|
25187
25963
|
*/
|
|
@@ -25190,6 +25966,16 @@ export declare namespace platform {
|
|
|
25190
25966
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
25191
25967
|
*/
|
|
25192
25968
|
values?: string;
|
|
25969
|
+
/**
|
|
25970
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
25971
|
+
*/
|
|
25972
|
+
valuesObject?: {
|
|
25973
|
+
[key: string]: string;
|
|
25974
|
+
};
|
|
25975
|
+
/**
|
|
25976
|
+
* Helm version to use for templating (either "2" or "3").
|
|
25977
|
+
*/
|
|
25978
|
+
version?: string;
|
|
25193
25979
|
}
|
|
25194
25980
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
25195
25981
|
/**
|
|
@@ -25425,7 +26211,7 @@ export declare namespace platform {
|
|
|
25425
26211
|
/**
|
|
25426
26212
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
25427
26213
|
*/
|
|
25428
|
-
revisionHistoryLimit
|
|
26214
|
+
revisionHistoryLimit: string;
|
|
25429
26215
|
/**
|
|
25430
26216
|
* Location of the application's manifests or chart.
|
|
25431
26217
|
*/
|
|
@@ -25443,7 +26229,7 @@ export declare namespace platform {
|
|
|
25443
26229
|
/**
|
|
25444
26230
|
* Name of the target cluster. Can be used instead of `server`.
|
|
25445
26231
|
*/
|
|
25446
|
-
name
|
|
26232
|
+
name: string;
|
|
25447
26233
|
/**
|
|
25448
26234
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
25449
26235
|
*/
|
|
@@ -25612,6 +26398,14 @@ export declare namespace platform {
|
|
|
25612
26398
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
25613
26399
|
*/
|
|
25614
26400
|
skipCrds?: boolean;
|
|
26401
|
+
/**
|
|
26402
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
26403
|
+
*/
|
|
26404
|
+
skipSchemaValidation?: boolean;
|
|
26405
|
+
/**
|
|
26406
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
26407
|
+
*/
|
|
26408
|
+
skipTests?: boolean;
|
|
25615
26409
|
/**
|
|
25616
26410
|
* List of Helm value files to use when generating a template.
|
|
25617
26411
|
*/
|
|
@@ -25620,6 +26414,16 @@ export declare namespace platform {
|
|
|
25620
26414
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
25621
26415
|
*/
|
|
25622
26416
|
values?: string;
|
|
26417
|
+
/**
|
|
26418
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
26419
|
+
*/
|
|
26420
|
+
valuesObject?: {
|
|
26421
|
+
[key: string]: string;
|
|
26422
|
+
};
|
|
26423
|
+
/**
|
|
26424
|
+
* Helm version to use for templating (either "2" or "3").
|
|
26425
|
+
*/
|
|
26426
|
+
version?: string;
|
|
25623
26427
|
}
|
|
25624
26428
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmFileParameter {
|
|
25625
26429
|
/**
|
|
@@ -25947,7 +26751,7 @@ export declare namespace platform {
|
|
|
25947
26751
|
/**
|
|
25948
26752
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
25949
26753
|
*/
|
|
25950
|
-
revisionHistoryLimit
|
|
26754
|
+
revisionHistoryLimit: string;
|
|
25951
26755
|
/**
|
|
25952
26756
|
* Location of the application's manifests or chart.
|
|
25953
26757
|
*/
|
|
@@ -25965,7 +26769,7 @@ export declare namespace platform {
|
|
|
25965
26769
|
/**
|
|
25966
26770
|
* Name of the target cluster. Can be used instead of `server`.
|
|
25967
26771
|
*/
|
|
25968
|
-
name
|
|
26772
|
+
name: string;
|
|
25969
26773
|
/**
|
|
25970
26774
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
25971
26775
|
*/
|
|
@@ -26134,6 +26938,14 @@ export declare namespace platform {
|
|
|
26134
26938
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
26135
26939
|
*/
|
|
26136
26940
|
skipCrds?: boolean;
|
|
26941
|
+
/**
|
|
26942
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
26943
|
+
*/
|
|
26944
|
+
skipSchemaValidation?: boolean;
|
|
26945
|
+
/**
|
|
26946
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
26947
|
+
*/
|
|
26948
|
+
skipTests?: boolean;
|
|
26137
26949
|
/**
|
|
26138
26950
|
* List of Helm value files to use when generating a template.
|
|
26139
26951
|
*/
|
|
@@ -26142,6 +26954,16 @@ export declare namespace platform {
|
|
|
26142
26954
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
26143
26955
|
*/
|
|
26144
26956
|
values?: string;
|
|
26957
|
+
/**
|
|
26958
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
26959
|
+
*/
|
|
26960
|
+
valuesObject?: {
|
|
26961
|
+
[key: string]: string;
|
|
26962
|
+
};
|
|
26963
|
+
/**
|
|
26964
|
+
* Helm version to use for templating (either "2" or "3").
|
|
26965
|
+
*/
|
|
26966
|
+
version?: string;
|
|
26145
26967
|
}
|
|
26146
26968
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
26147
26969
|
/**
|
|
@@ -26377,7 +27199,7 @@ export declare namespace platform {
|
|
|
26377
27199
|
/**
|
|
26378
27200
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
26379
27201
|
*/
|
|
26380
|
-
revisionHistoryLimit
|
|
27202
|
+
revisionHistoryLimit: string;
|
|
26381
27203
|
/**
|
|
26382
27204
|
* Location of the application's manifests or chart.
|
|
26383
27205
|
*/
|
|
@@ -26395,7 +27217,7 @@ export declare namespace platform {
|
|
|
26395
27217
|
/**
|
|
26396
27218
|
* Name of the target cluster. Can be used instead of `server`.
|
|
26397
27219
|
*/
|
|
26398
|
-
name
|
|
27220
|
+
name: string;
|
|
26399
27221
|
/**
|
|
26400
27222
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
26401
27223
|
*/
|
|
@@ -26564,6 +27386,14 @@ export declare namespace platform {
|
|
|
26564
27386
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
26565
27387
|
*/
|
|
26566
27388
|
skipCrds?: boolean;
|
|
27389
|
+
/**
|
|
27390
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
27391
|
+
*/
|
|
27392
|
+
skipSchemaValidation?: boolean;
|
|
27393
|
+
/**
|
|
27394
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
27395
|
+
*/
|
|
27396
|
+
skipTests?: boolean;
|
|
26567
27397
|
/**
|
|
26568
27398
|
* List of Helm value files to use when generating a template.
|
|
26569
27399
|
*/
|
|
@@ -26572,6 +27402,16 @@ export declare namespace platform {
|
|
|
26572
27402
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
26573
27403
|
*/
|
|
26574
27404
|
values?: string;
|
|
27405
|
+
/**
|
|
27406
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
27407
|
+
*/
|
|
27408
|
+
valuesObject?: {
|
|
27409
|
+
[key: string]: string;
|
|
27410
|
+
};
|
|
27411
|
+
/**
|
|
27412
|
+
* Helm version to use for templating (either "2" or "3").
|
|
27413
|
+
*/
|
|
27414
|
+
version?: string;
|
|
26575
27415
|
}
|
|
26576
27416
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
26577
27417
|
/**
|
|
@@ -26823,7 +27663,7 @@ export declare namespace platform {
|
|
|
26823
27663
|
/**
|
|
26824
27664
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
26825
27665
|
*/
|
|
26826
|
-
revisionHistoryLimit
|
|
27666
|
+
revisionHistoryLimit: string;
|
|
26827
27667
|
/**
|
|
26828
27668
|
* Location of the application's manifests or chart.
|
|
26829
27669
|
*/
|
|
@@ -26841,7 +27681,7 @@ export declare namespace platform {
|
|
|
26841
27681
|
/**
|
|
26842
27682
|
* Name of the target cluster. Can be used instead of `server`.
|
|
26843
27683
|
*/
|
|
26844
|
-
name
|
|
27684
|
+
name: string;
|
|
26845
27685
|
/**
|
|
26846
27686
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
26847
27687
|
*/
|
|
@@ -27010,6 +27850,14 @@ export declare namespace platform {
|
|
|
27010
27850
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
27011
27851
|
*/
|
|
27012
27852
|
skipCrds?: boolean;
|
|
27853
|
+
/**
|
|
27854
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
27855
|
+
*/
|
|
27856
|
+
skipSchemaValidation?: boolean;
|
|
27857
|
+
/**
|
|
27858
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
27859
|
+
*/
|
|
27860
|
+
skipTests?: boolean;
|
|
27013
27861
|
/**
|
|
27014
27862
|
* List of Helm value files to use when generating a template.
|
|
27015
27863
|
*/
|
|
@@ -27018,6 +27866,16 @@ export declare namespace platform {
|
|
|
27018
27866
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
27019
27867
|
*/
|
|
27020
27868
|
values?: string;
|
|
27869
|
+
/**
|
|
27870
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
27871
|
+
*/
|
|
27872
|
+
valuesObject?: {
|
|
27873
|
+
[key: string]: string;
|
|
27874
|
+
};
|
|
27875
|
+
/**
|
|
27876
|
+
* Helm version to use for templating (either "2" or "3").
|
|
27877
|
+
*/
|
|
27878
|
+
version?: string;
|
|
27021
27879
|
}
|
|
27022
27880
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
27023
27881
|
/**
|
|
@@ -27173,7 +28031,7 @@ export declare namespace platform {
|
|
|
27173
28031
|
}
|
|
27174
28032
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorList {
|
|
27175
28033
|
/**
|
|
27176
|
-
* List of key/value pairs to pass as parameters into the template
|
|
28034
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
27177
28035
|
*/
|
|
27178
28036
|
elements: {
|
|
27179
28037
|
[key: string]: string;
|
|
@@ -27239,7 +28097,7 @@ export declare namespace platform {
|
|
|
27239
28097
|
/**
|
|
27240
28098
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
27241
28099
|
*/
|
|
27242
|
-
revisionHistoryLimit
|
|
28100
|
+
revisionHistoryLimit: string;
|
|
27243
28101
|
/**
|
|
27244
28102
|
* Location of the application's manifests or chart.
|
|
27245
28103
|
*/
|
|
@@ -27257,7 +28115,7 @@ export declare namespace platform {
|
|
|
27257
28115
|
/**
|
|
27258
28116
|
* Name of the target cluster. Can be used instead of `server`.
|
|
27259
28117
|
*/
|
|
27260
|
-
name
|
|
28118
|
+
name: string;
|
|
27261
28119
|
/**
|
|
27262
28120
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
27263
28121
|
*/
|
|
@@ -27426,6 +28284,14 @@ export declare namespace platform {
|
|
|
27426
28284
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
27427
28285
|
*/
|
|
27428
28286
|
skipCrds?: boolean;
|
|
28287
|
+
/**
|
|
28288
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
28289
|
+
*/
|
|
28290
|
+
skipSchemaValidation?: boolean;
|
|
28291
|
+
/**
|
|
28292
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
28293
|
+
*/
|
|
28294
|
+
skipTests?: boolean;
|
|
27429
28295
|
/**
|
|
27430
28296
|
* List of Helm value files to use when generating a template.
|
|
27431
28297
|
*/
|
|
@@ -27434,6 +28300,16 @@ export declare namespace platform {
|
|
|
27434
28300
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
27435
28301
|
*/
|
|
27436
28302
|
values?: string;
|
|
28303
|
+
/**
|
|
28304
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
28305
|
+
*/
|
|
28306
|
+
valuesObject?: {
|
|
28307
|
+
[key: string]: string;
|
|
28308
|
+
};
|
|
28309
|
+
/**
|
|
28310
|
+
* Helm version to use for templating (either "2" or "3").
|
|
28311
|
+
*/
|
|
28312
|
+
version?: string;
|
|
27437
28313
|
}
|
|
27438
28314
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
27439
28315
|
/**
|
|
@@ -27817,7 +28693,7 @@ export declare namespace platform {
|
|
|
27817
28693
|
/**
|
|
27818
28694
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
27819
28695
|
*/
|
|
27820
|
-
revisionHistoryLimit
|
|
28696
|
+
revisionHistoryLimit: string;
|
|
27821
28697
|
/**
|
|
27822
28698
|
* Location of the application's manifests or chart.
|
|
27823
28699
|
*/
|
|
@@ -27835,7 +28711,7 @@ export declare namespace platform {
|
|
|
27835
28711
|
/**
|
|
27836
28712
|
* Name of the target cluster. Can be used instead of `server`.
|
|
27837
28713
|
*/
|
|
27838
|
-
name
|
|
28714
|
+
name: string;
|
|
27839
28715
|
/**
|
|
27840
28716
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
27841
28717
|
*/
|
|
@@ -28004,6 +28880,14 @@ export declare namespace platform {
|
|
|
28004
28880
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
28005
28881
|
*/
|
|
28006
28882
|
skipCrds?: boolean;
|
|
28883
|
+
/**
|
|
28884
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
28885
|
+
*/
|
|
28886
|
+
skipSchemaValidation?: boolean;
|
|
28887
|
+
/**
|
|
28888
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
28889
|
+
*/
|
|
28890
|
+
skipTests?: boolean;
|
|
28007
28891
|
/**
|
|
28008
28892
|
* List of Helm value files to use when generating a template.
|
|
28009
28893
|
*/
|
|
@@ -28012,6 +28896,16 @@ export declare namespace platform {
|
|
|
28012
28896
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
28013
28897
|
*/
|
|
28014
28898
|
values?: string;
|
|
28899
|
+
/**
|
|
28900
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
28901
|
+
*/
|
|
28902
|
+
valuesObject?: {
|
|
28903
|
+
[key: string]: string;
|
|
28904
|
+
};
|
|
28905
|
+
/**
|
|
28906
|
+
* Helm version to use for templating (either "2" or "3").
|
|
28907
|
+
*/
|
|
28908
|
+
version?: string;
|
|
28015
28909
|
}
|
|
28016
28910
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
28017
28911
|
/**
|
|
@@ -28479,7 +29373,7 @@ export declare namespace platform {
|
|
|
28479
29373
|
/**
|
|
28480
29374
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
28481
29375
|
*/
|
|
28482
|
-
revisionHistoryLimit
|
|
29376
|
+
revisionHistoryLimit: string;
|
|
28483
29377
|
/**
|
|
28484
29378
|
* Location of the application's manifests or chart.
|
|
28485
29379
|
*/
|
|
@@ -28497,7 +29391,7 @@ export declare namespace platform {
|
|
|
28497
29391
|
/**
|
|
28498
29392
|
* Name of the target cluster. Can be used instead of `server`.
|
|
28499
29393
|
*/
|
|
28500
|
-
name
|
|
29394
|
+
name: string;
|
|
28501
29395
|
/**
|
|
28502
29396
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
28503
29397
|
*/
|
|
@@ -28666,6 +29560,14 @@ export declare namespace platform {
|
|
|
28666
29560
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
28667
29561
|
*/
|
|
28668
29562
|
skipCrds?: boolean;
|
|
29563
|
+
/**
|
|
29564
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
29565
|
+
*/
|
|
29566
|
+
skipSchemaValidation?: boolean;
|
|
29567
|
+
/**
|
|
29568
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
29569
|
+
*/
|
|
29570
|
+
skipTests?: boolean;
|
|
28669
29571
|
/**
|
|
28670
29572
|
* List of Helm value files to use when generating a template.
|
|
28671
29573
|
*/
|
|
@@ -28674,6 +29576,16 @@ export declare namespace platform {
|
|
|
28674
29576
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
28675
29577
|
*/
|
|
28676
29578
|
values?: string;
|
|
29579
|
+
/**
|
|
29580
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
29581
|
+
*/
|
|
29582
|
+
valuesObject?: {
|
|
29583
|
+
[key: string]: string;
|
|
29584
|
+
};
|
|
29585
|
+
/**
|
|
29586
|
+
* Helm version to use for templating (either "2" or "3").
|
|
29587
|
+
*/
|
|
29588
|
+
version?: string;
|
|
28677
29589
|
}
|
|
28678
29590
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
28679
29591
|
/**
|
|
@@ -28909,7 +29821,7 @@ export declare namespace platform {
|
|
|
28909
29821
|
/**
|
|
28910
29822
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
28911
29823
|
*/
|
|
28912
|
-
revisionHistoryLimit
|
|
29824
|
+
revisionHistoryLimit: string;
|
|
28913
29825
|
/**
|
|
28914
29826
|
* Location of the application's manifests or chart.
|
|
28915
29827
|
*/
|
|
@@ -28927,7 +29839,7 @@ export declare namespace platform {
|
|
|
28927
29839
|
/**
|
|
28928
29840
|
* Name of the target cluster. Can be used instead of `server`.
|
|
28929
29841
|
*/
|
|
28930
|
-
name
|
|
29842
|
+
name: string;
|
|
28931
29843
|
/**
|
|
28932
29844
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
28933
29845
|
*/
|
|
@@ -29096,6 +30008,14 @@ export declare namespace platform {
|
|
|
29096
30008
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
29097
30009
|
*/
|
|
29098
30010
|
skipCrds?: boolean;
|
|
30011
|
+
/**
|
|
30012
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
30013
|
+
*/
|
|
30014
|
+
skipSchemaValidation?: boolean;
|
|
30015
|
+
/**
|
|
30016
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
30017
|
+
*/
|
|
30018
|
+
skipTests?: boolean;
|
|
29099
30019
|
/**
|
|
29100
30020
|
* List of Helm value files to use when generating a template.
|
|
29101
30021
|
*/
|
|
@@ -29104,6 +30024,16 @@ export declare namespace platform {
|
|
|
29104
30024
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
29105
30025
|
*/
|
|
29106
30026
|
values?: string;
|
|
30027
|
+
/**
|
|
30028
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
30029
|
+
*/
|
|
30030
|
+
valuesObject?: {
|
|
30031
|
+
[key: string]: string;
|
|
30032
|
+
};
|
|
30033
|
+
/**
|
|
30034
|
+
* Helm version to use for templating (either "2" or "3").
|
|
30035
|
+
*/
|
|
30036
|
+
version?: string;
|
|
29107
30037
|
}
|
|
29108
30038
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmFileParameter {
|
|
29109
30039
|
/**
|
|
@@ -29487,7 +30417,7 @@ export declare namespace platform {
|
|
|
29487
30417
|
/**
|
|
29488
30418
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
29489
30419
|
*/
|
|
29490
|
-
revisionHistoryLimit
|
|
30420
|
+
revisionHistoryLimit: string;
|
|
29491
30421
|
/**
|
|
29492
30422
|
* Location of the application's manifests or chart.
|
|
29493
30423
|
*/
|
|
@@ -29505,7 +30435,7 @@ export declare namespace platform {
|
|
|
29505
30435
|
/**
|
|
29506
30436
|
* Name of the target cluster. Can be used instead of `server`.
|
|
29507
30437
|
*/
|
|
29508
|
-
name
|
|
30438
|
+
name: string;
|
|
29509
30439
|
/**
|
|
29510
30440
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
29511
30441
|
*/
|
|
@@ -29674,6 +30604,14 @@ export declare namespace platform {
|
|
|
29674
30604
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
29675
30605
|
*/
|
|
29676
30606
|
skipCrds?: boolean;
|
|
30607
|
+
/**
|
|
30608
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
30609
|
+
*/
|
|
30610
|
+
skipSchemaValidation?: boolean;
|
|
30611
|
+
/**
|
|
30612
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
30613
|
+
*/
|
|
30614
|
+
skipTests?: boolean;
|
|
29677
30615
|
/**
|
|
29678
30616
|
* List of Helm value files to use when generating a template.
|
|
29679
30617
|
*/
|
|
@@ -29682,6 +30620,16 @@ export declare namespace platform {
|
|
|
29682
30620
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
29683
30621
|
*/
|
|
29684
30622
|
values?: string;
|
|
30623
|
+
/**
|
|
30624
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
30625
|
+
*/
|
|
30626
|
+
valuesObject?: {
|
|
30627
|
+
[key: string]: string;
|
|
30628
|
+
};
|
|
30629
|
+
/**
|
|
30630
|
+
* Helm version to use for templating (either "2" or "3").
|
|
30631
|
+
*/
|
|
30632
|
+
version?: string;
|
|
29685
30633
|
}
|
|
29686
30634
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
29687
30635
|
/**
|
|
@@ -30149,7 +31097,7 @@ export declare namespace platform {
|
|
|
30149
31097
|
/**
|
|
30150
31098
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
30151
31099
|
*/
|
|
30152
|
-
revisionHistoryLimit
|
|
31100
|
+
revisionHistoryLimit: string;
|
|
30153
31101
|
/**
|
|
30154
31102
|
* Location of the application's manifests or chart.
|
|
30155
31103
|
*/
|
|
@@ -30167,7 +31115,7 @@ export declare namespace platform {
|
|
|
30167
31115
|
/**
|
|
30168
31116
|
* Name of the target cluster. Can be used instead of `server`.
|
|
30169
31117
|
*/
|
|
30170
|
-
name
|
|
31118
|
+
name: string;
|
|
30171
31119
|
/**
|
|
30172
31120
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
30173
31121
|
*/
|
|
@@ -30336,6 +31284,14 @@ export declare namespace platform {
|
|
|
30336
31284
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
30337
31285
|
*/
|
|
30338
31286
|
skipCrds?: boolean;
|
|
31287
|
+
/**
|
|
31288
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
31289
|
+
*/
|
|
31290
|
+
skipSchemaValidation?: boolean;
|
|
31291
|
+
/**
|
|
31292
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
31293
|
+
*/
|
|
31294
|
+
skipTests?: boolean;
|
|
30339
31295
|
/**
|
|
30340
31296
|
* List of Helm value files to use when generating a template.
|
|
30341
31297
|
*/
|
|
@@ -30344,6 +31300,16 @@ export declare namespace platform {
|
|
|
30344
31300
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
30345
31301
|
*/
|
|
30346
31302
|
values?: string;
|
|
31303
|
+
/**
|
|
31304
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
31305
|
+
*/
|
|
31306
|
+
valuesObject?: {
|
|
31307
|
+
[key: string]: string;
|
|
31308
|
+
};
|
|
31309
|
+
/**
|
|
31310
|
+
* Helm version to use for templating (either "2" or "3").
|
|
31311
|
+
*/
|
|
31312
|
+
version?: string;
|
|
30347
31313
|
}
|
|
30348
31314
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
30349
31315
|
/**
|
|
@@ -30579,7 +31545,7 @@ export declare namespace platform {
|
|
|
30579
31545
|
/**
|
|
30580
31546
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
30581
31547
|
*/
|
|
30582
|
-
revisionHistoryLimit
|
|
31548
|
+
revisionHistoryLimit: string;
|
|
30583
31549
|
/**
|
|
30584
31550
|
* Location of the application's manifests or chart.
|
|
30585
31551
|
*/
|
|
@@ -30597,7 +31563,7 @@ export declare namespace platform {
|
|
|
30597
31563
|
/**
|
|
30598
31564
|
* Name of the target cluster. Can be used instead of `server`.
|
|
30599
31565
|
*/
|
|
30600
|
-
name
|
|
31566
|
+
name: string;
|
|
30601
31567
|
/**
|
|
30602
31568
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
30603
31569
|
*/
|
|
@@ -30766,6 +31732,14 @@ export declare namespace platform {
|
|
|
30766
31732
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
30767
31733
|
*/
|
|
30768
31734
|
skipCrds?: boolean;
|
|
31735
|
+
/**
|
|
31736
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
31737
|
+
*/
|
|
31738
|
+
skipSchemaValidation?: boolean;
|
|
31739
|
+
/**
|
|
31740
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
31741
|
+
*/
|
|
31742
|
+
skipTests?: boolean;
|
|
30769
31743
|
/**
|
|
30770
31744
|
* List of Helm value files to use when generating a template.
|
|
30771
31745
|
*/
|
|
@@ -30774,6 +31748,16 @@ export declare namespace platform {
|
|
|
30774
31748
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
30775
31749
|
*/
|
|
30776
31750
|
values?: string;
|
|
31751
|
+
/**
|
|
31752
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
31753
|
+
*/
|
|
31754
|
+
valuesObject?: {
|
|
31755
|
+
[key: string]: string;
|
|
31756
|
+
};
|
|
31757
|
+
/**
|
|
31758
|
+
* Helm version to use for templating (either "2" or "3").
|
|
31759
|
+
*/
|
|
31760
|
+
version?: string;
|
|
30777
31761
|
}
|
|
30778
31762
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceHelmFileParameter {
|
|
30779
31763
|
/**
|
|
@@ -31157,7 +32141,7 @@ export declare namespace platform {
|
|
|
31157
32141
|
/**
|
|
31158
32142
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
31159
32143
|
*/
|
|
31160
|
-
revisionHistoryLimit
|
|
32144
|
+
revisionHistoryLimit: string;
|
|
31161
32145
|
/**
|
|
31162
32146
|
* Location of the application's manifests or chart.
|
|
31163
32147
|
*/
|
|
@@ -31175,7 +32159,7 @@ export declare namespace platform {
|
|
|
31175
32159
|
/**
|
|
31176
32160
|
* Name of the target cluster. Can be used instead of `server`.
|
|
31177
32161
|
*/
|
|
31178
|
-
name
|
|
32162
|
+
name: string;
|
|
31179
32163
|
/**
|
|
31180
32164
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
31181
32165
|
*/
|
|
@@ -31344,6 +32328,14 @@ export declare namespace platform {
|
|
|
31344
32328
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
31345
32329
|
*/
|
|
31346
32330
|
skipCrds?: boolean;
|
|
32331
|
+
/**
|
|
32332
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
32333
|
+
*/
|
|
32334
|
+
skipSchemaValidation?: boolean;
|
|
32335
|
+
/**
|
|
32336
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
32337
|
+
*/
|
|
32338
|
+
skipTests?: boolean;
|
|
31347
32339
|
/**
|
|
31348
32340
|
* List of Helm value files to use when generating a template.
|
|
31349
32341
|
*/
|
|
@@ -31352,6 +32344,16 @@ export declare namespace platform {
|
|
|
31352
32344
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
31353
32345
|
*/
|
|
31354
32346
|
values?: string;
|
|
32347
|
+
/**
|
|
32348
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
32349
|
+
*/
|
|
32350
|
+
valuesObject?: {
|
|
32351
|
+
[key: string]: string;
|
|
32352
|
+
};
|
|
32353
|
+
/**
|
|
32354
|
+
* Helm version to use for templating (either "2" or "3").
|
|
32355
|
+
*/
|
|
32356
|
+
version?: string;
|
|
31355
32357
|
}
|
|
31356
32358
|
interface GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
31357
32359
|
/**
|
|
@@ -31819,7 +32821,7 @@ export declare namespace platform {
|
|
|
31819
32821
|
/**
|
|
31820
32822
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
31821
32823
|
*/
|
|
31822
|
-
revisionHistoryLimit
|
|
32824
|
+
revisionHistoryLimit: string;
|
|
31823
32825
|
/**
|
|
31824
32826
|
* Location of the application's manifests or chart.
|
|
31825
32827
|
*/
|
|
@@ -31837,7 +32839,7 @@ export declare namespace platform {
|
|
|
31837
32839
|
/**
|
|
31838
32840
|
* Name of the target cluster. Can be used instead of `server`.
|
|
31839
32841
|
*/
|
|
31840
|
-
name
|
|
32842
|
+
name: string;
|
|
31841
32843
|
/**
|
|
31842
32844
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
31843
32845
|
*/
|
|
@@ -32006,6 +33008,14 @@ export declare namespace platform {
|
|
|
32006
33008
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
32007
33009
|
*/
|
|
32008
33010
|
skipCrds?: boolean;
|
|
33011
|
+
/**
|
|
33012
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
33013
|
+
*/
|
|
33014
|
+
skipSchemaValidation?: boolean;
|
|
33015
|
+
/**
|
|
33016
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
33017
|
+
*/
|
|
33018
|
+
skipTests?: boolean;
|
|
32009
33019
|
/**
|
|
32010
33020
|
* List of Helm value files to use when generating a template.
|
|
32011
33021
|
*/
|
|
@@ -32014,6 +33024,16 @@ export declare namespace platform {
|
|
|
32014
33024
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
32015
33025
|
*/
|
|
32016
33026
|
values?: string;
|
|
33027
|
+
/**
|
|
33028
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
33029
|
+
*/
|
|
33030
|
+
valuesObject?: {
|
|
33031
|
+
[key: string]: string;
|
|
33032
|
+
};
|
|
33033
|
+
/**
|
|
33034
|
+
* Helm version to use for templating (either "2" or "3").
|
|
33035
|
+
*/
|
|
33036
|
+
version?: string;
|
|
32017
33037
|
}
|
|
32018
33038
|
interface GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
32019
33039
|
/**
|
|
@@ -32313,7 +33333,7 @@ export declare namespace platform {
|
|
|
32313
33333
|
/**
|
|
32314
33334
|
* Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
|
|
32315
33335
|
*/
|
|
32316
|
-
revisionHistoryLimit
|
|
33336
|
+
revisionHistoryLimit: string;
|
|
32317
33337
|
/**
|
|
32318
33338
|
* Location of the application's manifests or chart.
|
|
32319
33339
|
*/
|
|
@@ -32331,7 +33351,7 @@ export declare namespace platform {
|
|
|
32331
33351
|
/**
|
|
32332
33352
|
* Name of the target cluster. Can be used instead of `server`.
|
|
32333
33353
|
*/
|
|
32334
|
-
name
|
|
33354
|
+
name: string;
|
|
32335
33355
|
/**
|
|
32336
33356
|
* Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
|
|
32337
33357
|
*/
|
|
@@ -32500,6 +33520,14 @@ export declare namespace platform {
|
|
|
32500
33520
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
32501
33521
|
*/
|
|
32502
33522
|
skipCrds?: boolean;
|
|
33523
|
+
/**
|
|
33524
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
33525
|
+
*/
|
|
33526
|
+
skipSchemaValidation?: boolean;
|
|
33527
|
+
/**
|
|
33528
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
33529
|
+
*/
|
|
33530
|
+
skipTests?: boolean;
|
|
32503
33531
|
/**
|
|
32504
33532
|
* List of Helm value files to use when generating a template.
|
|
32505
33533
|
*/
|
|
@@ -32508,6 +33536,16 @@ export declare namespace platform {
|
|
|
32508
33536
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
32509
33537
|
*/
|
|
32510
33538
|
values?: string;
|
|
33539
|
+
/**
|
|
33540
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
33541
|
+
*/
|
|
33542
|
+
valuesObject?: {
|
|
33543
|
+
[key: string]: string;
|
|
33544
|
+
};
|
|
33545
|
+
/**
|
|
33546
|
+
* Helm version to use for templating (either "2" or "3").
|
|
33547
|
+
*/
|
|
33548
|
+
version?: string;
|
|
32511
33549
|
}
|
|
32512
33550
|
interface GitopsApplicationsetApplicationsetSpecTemplateSpecSourceHelmFileParameter {
|
|
32513
33551
|
/**
|
|
@@ -32724,6 +33762,40 @@ export declare namespace platform {
|
|
|
32724
33762
|
*/
|
|
32725
33763
|
usernameRef?: string;
|
|
32726
33764
|
}
|
|
33765
|
+
interface InfraModuleTestingTestingMetadata {
|
|
33766
|
+
/**
|
|
33767
|
+
* Account is the internal customer account ID
|
|
33768
|
+
*/
|
|
33769
|
+
account: string;
|
|
33770
|
+
/**
|
|
33771
|
+
* Organization identifier
|
|
33772
|
+
*/
|
|
33773
|
+
org: string;
|
|
33774
|
+
/**
|
|
33775
|
+
* Pipelines where the testing is enabled
|
|
33776
|
+
*/
|
|
33777
|
+
pipelines: string[];
|
|
33778
|
+
/**
|
|
33779
|
+
* Project identifier
|
|
33780
|
+
*/
|
|
33781
|
+
project: string;
|
|
33782
|
+
/**
|
|
33783
|
+
* Provider connector for testing purposes
|
|
33784
|
+
*/
|
|
33785
|
+
providerConnector: string;
|
|
33786
|
+
/**
|
|
33787
|
+
* Provisioner type for testing purposes
|
|
33788
|
+
*/
|
|
33789
|
+
provisionerType: string;
|
|
33790
|
+
/**
|
|
33791
|
+
* Provisioner version for testing purposes
|
|
33792
|
+
*/
|
|
33793
|
+
provisionerVersion: string;
|
|
33794
|
+
/**
|
|
33795
|
+
* Release pipeline
|
|
33796
|
+
*/
|
|
33797
|
+
releasePipeline: string;
|
|
33798
|
+
}
|
|
32727
33799
|
interface InfraVariableSetConnector {
|
|
32728
33800
|
/**
|
|
32729
33801
|
* Connector Ref is the reference to the connector
|
|
@@ -33424,6 +34496,9 @@ export declare namespace platform {
|
|
|
33424
34496
|
interface PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig {
|
|
33425
34497
|
entityIdentifiers?: string[];
|
|
33426
34498
|
notificationEntity: string;
|
|
34499
|
+
/**
|
|
34500
|
+
* The pipeline event that triggers the notification. Supported values: `PIPELINE_START`, `PIPELINE_SUCCESS`, `PIPELINE_FAILED`, `STAGE_START`, `STAGE_SUCCESS`, `STAGE_FAILED`.
|
|
34501
|
+
*/
|
|
33427
34502
|
notificationEvent: string;
|
|
33428
34503
|
notificationEventDatas?: outputs.platform.PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData[];
|
|
33429
34504
|
}
|