@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/input.d.ts
CHANGED
|
@@ -4532,6 +4532,142 @@ export declare namespace platform {
|
|
|
4532
4532
|
*/
|
|
4533
4533
|
userName?: pulumi.Input<string>;
|
|
4534
4534
|
}
|
|
4535
|
+
interface GetInfraModuleTestingMetadata {
|
|
4536
|
+
/**
|
|
4537
|
+
* Account is the internal customer account ID
|
|
4538
|
+
*/
|
|
4539
|
+
account?: string;
|
|
4540
|
+
/**
|
|
4541
|
+
* Organization identifier
|
|
4542
|
+
*/
|
|
4543
|
+
org?: string;
|
|
4544
|
+
/**
|
|
4545
|
+
* Pipelines where the testing is enabled
|
|
4546
|
+
*/
|
|
4547
|
+
pipelines?: string[];
|
|
4548
|
+
/**
|
|
4549
|
+
* Project identifier
|
|
4550
|
+
*/
|
|
4551
|
+
project?: string;
|
|
4552
|
+
/**
|
|
4553
|
+
* Provider connector for testing purposes
|
|
4554
|
+
*/
|
|
4555
|
+
providerConnector?: string;
|
|
4556
|
+
/**
|
|
4557
|
+
* Provisioner type for testing purposes
|
|
4558
|
+
*/
|
|
4559
|
+
provisionerType?: string;
|
|
4560
|
+
/**
|
|
4561
|
+
* Provisioner version for testing purposes
|
|
4562
|
+
*/
|
|
4563
|
+
provisionerVersion?: string;
|
|
4564
|
+
/**
|
|
4565
|
+
* Release pipeline
|
|
4566
|
+
*/
|
|
4567
|
+
releasePipeline?: string;
|
|
4568
|
+
}
|
|
4569
|
+
interface GetInfraModuleTestingMetadataArgs {
|
|
4570
|
+
/**
|
|
4571
|
+
* Account is the internal customer account ID
|
|
4572
|
+
*/
|
|
4573
|
+
account?: pulumi.Input<string>;
|
|
4574
|
+
/**
|
|
4575
|
+
* Organization identifier
|
|
4576
|
+
*/
|
|
4577
|
+
org?: pulumi.Input<string>;
|
|
4578
|
+
/**
|
|
4579
|
+
* Pipelines where the testing is enabled
|
|
4580
|
+
*/
|
|
4581
|
+
pipelines?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4582
|
+
/**
|
|
4583
|
+
* Project identifier
|
|
4584
|
+
*/
|
|
4585
|
+
project?: pulumi.Input<string>;
|
|
4586
|
+
/**
|
|
4587
|
+
* Provider connector for testing purposes
|
|
4588
|
+
*/
|
|
4589
|
+
providerConnector?: pulumi.Input<string>;
|
|
4590
|
+
/**
|
|
4591
|
+
* Provisioner type for testing purposes
|
|
4592
|
+
*/
|
|
4593
|
+
provisionerType?: pulumi.Input<string>;
|
|
4594
|
+
/**
|
|
4595
|
+
* Provisioner version for testing purposes
|
|
4596
|
+
*/
|
|
4597
|
+
provisionerVersion?: pulumi.Input<string>;
|
|
4598
|
+
/**
|
|
4599
|
+
* Release pipeline
|
|
4600
|
+
*/
|
|
4601
|
+
releasePipeline?: pulumi.Input<string>;
|
|
4602
|
+
}
|
|
4603
|
+
interface GetInfraModuleTestingTestingMetadata {
|
|
4604
|
+
/**
|
|
4605
|
+
* Account is the internal customer account ID
|
|
4606
|
+
*/
|
|
4607
|
+
account?: string;
|
|
4608
|
+
/**
|
|
4609
|
+
* Organization identifier
|
|
4610
|
+
*/
|
|
4611
|
+
org?: string;
|
|
4612
|
+
/**
|
|
4613
|
+
* Pipelines where the testing is enabled
|
|
4614
|
+
*/
|
|
4615
|
+
pipelines?: string[];
|
|
4616
|
+
/**
|
|
4617
|
+
* Project identifier
|
|
4618
|
+
*/
|
|
4619
|
+
project?: string;
|
|
4620
|
+
/**
|
|
4621
|
+
* Provider connector for testing purposes
|
|
4622
|
+
*/
|
|
4623
|
+
providerConnector?: string;
|
|
4624
|
+
/**
|
|
4625
|
+
* Provisioner type for testing purposes
|
|
4626
|
+
*/
|
|
4627
|
+
provisionerType?: string;
|
|
4628
|
+
/**
|
|
4629
|
+
* Provisioner version for testing purposes
|
|
4630
|
+
*/
|
|
4631
|
+
provisionerVersion?: string;
|
|
4632
|
+
/**
|
|
4633
|
+
* Release pipeline
|
|
4634
|
+
*/
|
|
4635
|
+
releasePipeline?: string;
|
|
4636
|
+
}
|
|
4637
|
+
interface GetInfraModuleTestingTestingMetadataArgs {
|
|
4638
|
+
/**
|
|
4639
|
+
* Account is the internal customer account ID
|
|
4640
|
+
*/
|
|
4641
|
+
account?: pulumi.Input<string>;
|
|
4642
|
+
/**
|
|
4643
|
+
* Organization identifier
|
|
4644
|
+
*/
|
|
4645
|
+
org?: pulumi.Input<string>;
|
|
4646
|
+
/**
|
|
4647
|
+
* Pipelines where the testing is enabled
|
|
4648
|
+
*/
|
|
4649
|
+
pipelines?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4650
|
+
/**
|
|
4651
|
+
* Project identifier
|
|
4652
|
+
*/
|
|
4653
|
+
project?: pulumi.Input<string>;
|
|
4654
|
+
/**
|
|
4655
|
+
* Provider connector for testing purposes
|
|
4656
|
+
*/
|
|
4657
|
+
providerConnector?: pulumi.Input<string>;
|
|
4658
|
+
/**
|
|
4659
|
+
* Provisioner type for testing purposes
|
|
4660
|
+
*/
|
|
4661
|
+
provisionerType?: pulumi.Input<string>;
|
|
4662
|
+
/**
|
|
4663
|
+
* Provisioner version for testing purposes
|
|
4664
|
+
*/
|
|
4665
|
+
provisionerVersion?: pulumi.Input<string>;
|
|
4666
|
+
/**
|
|
4667
|
+
* Release pipeline
|
|
4668
|
+
*/
|
|
4669
|
+
releasePipeline?: pulumi.Input<string>;
|
|
4670
|
+
}
|
|
4535
4671
|
interface GetInfraVariableSetConnector {
|
|
4536
4672
|
/**
|
|
4537
4673
|
* Connector Ref is the reference to the connector
|
|
@@ -5621,6 +5757,10 @@ export declare namespace platform {
|
|
|
5621
5757
|
* The ArgoCD project name corresponding to this GitOps application. Value must match mappings of ArgoCD projects to harness project.
|
|
5622
5758
|
*/
|
|
5623
5759
|
project?: pulumi.Input<string>;
|
|
5760
|
+
/**
|
|
5761
|
+
* Revision history limit for the application.
|
|
5762
|
+
*/
|
|
5763
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
5624
5764
|
/**
|
|
5625
5765
|
* Contains all information about the source of the GitOps application.
|
|
5626
5766
|
*/
|
|
@@ -5658,7 +5798,7 @@ export declare namespace platform {
|
|
|
5658
5798
|
*/
|
|
5659
5799
|
directories?: pulumi.Input<pulumi.Input<inputs.platform.GitOpsApplicationsApplicationSpecSourceDirectory>[]>;
|
|
5660
5800
|
/**
|
|
5661
|
-
*
|
|
5801
|
+
* Helm specific options.
|
|
5662
5802
|
*/
|
|
5663
5803
|
helms?: pulumi.Input<pulumi.Input<inputs.platform.GitOpsApplicationsApplicationSpecSourceHelm>[]>;
|
|
5664
5804
|
/**
|
|
@@ -5669,6 +5809,10 @@ export declare namespace platform {
|
|
|
5669
5809
|
* Options specific to a GitOps application source specific to Kustomize.
|
|
5670
5810
|
*/
|
|
5671
5811
|
kustomizes?: pulumi.Input<pulumi.Input<inputs.platform.GitOpsApplicationsApplicationSpecSourceKustomize>[]>;
|
|
5812
|
+
/**
|
|
5813
|
+
* Name is used to refer to a source and is displayed in the UI. It is used in multi-source Applications.
|
|
5814
|
+
*/
|
|
5815
|
+
name?: pulumi.Input<string>;
|
|
5672
5816
|
/**
|
|
5673
5817
|
* Directory path within the git repository, and is only valid for the GitOps applications sourced from git.
|
|
5674
5818
|
*/
|
|
@@ -5752,27 +5896,27 @@ export declare namespace platform {
|
|
|
5752
5896
|
}
|
|
5753
5897
|
interface GitOpsApplicationsApplicationSpecSourceHelm {
|
|
5754
5898
|
/**
|
|
5755
|
-
* File parameters
|
|
5899
|
+
* File parameters for the helm template.
|
|
5756
5900
|
*/
|
|
5757
5901
|
fileParameters?: pulumi.Input<pulumi.Input<inputs.platform.GitOpsApplicationsApplicationSpecSourceHelmFileParameter>[]>;
|
|
5758
5902
|
/**
|
|
5759
|
-
* Prevents 'helm template' from failing when valueFiles do not exist locally.
|
|
5903
|
+
* Prevents 'helm template' from failing when `valueFiles` do not exist locally by not appending them to 'helm template --values'.
|
|
5760
5904
|
*/
|
|
5761
5905
|
ignoreMissingValueFiles?: pulumi.Input<boolean>;
|
|
5762
5906
|
/**
|
|
5763
|
-
*
|
|
5907
|
+
* Helm parameters which are passed to the helm template command upon manifest generation.
|
|
5764
5908
|
*/
|
|
5765
5909
|
parameters?: pulumi.Input<pulumi.Input<inputs.platform.GitOpsApplicationsApplicationSpecSourceHelmParameter>[]>;
|
|
5766
5910
|
/**
|
|
5767
|
-
*
|
|
5911
|
+
* If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
|
|
5768
5912
|
*/
|
|
5769
5913
|
passCredentials?: pulumi.Input<boolean>;
|
|
5770
5914
|
/**
|
|
5771
|
-
* Helm release name
|
|
5915
|
+
* Helm release name. If omitted it will use the application name.
|
|
5772
5916
|
*/
|
|
5773
5917
|
releaseName?: pulumi.Input<string>;
|
|
5774
5918
|
/**
|
|
5775
|
-
*
|
|
5919
|
+
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
5776
5920
|
*/
|
|
5777
5921
|
skipCrds?: pulumi.Input<boolean>;
|
|
5778
5922
|
/**
|
|
@@ -5784,35 +5928,41 @@ export declare namespace platform {
|
|
|
5784
5928
|
*/
|
|
5785
5929
|
skipTests?: pulumi.Input<boolean>;
|
|
5786
5930
|
/**
|
|
5787
|
-
* List of
|
|
5931
|
+
* List of Helm value files to use when generating a template.
|
|
5788
5932
|
*/
|
|
5789
5933
|
valueFiles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5790
5934
|
/**
|
|
5791
|
-
* Helm values to be passed to helm template, typically defined as a block.
|
|
5935
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
5792
5936
|
*/
|
|
5793
5937
|
values?: pulumi.Input<string>;
|
|
5794
5938
|
/**
|
|
5795
|
-
* Helm
|
|
5939
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
5940
|
+
*/
|
|
5941
|
+
valuesObject?: pulumi.Input<{
|
|
5942
|
+
[key: string]: pulumi.Input<string>;
|
|
5943
|
+
}>;
|
|
5944
|
+
/**
|
|
5945
|
+
* Helm version to use for templating (either "2" or "3").
|
|
5796
5946
|
*/
|
|
5797
5947
|
version?: pulumi.Input<string>;
|
|
5798
5948
|
}
|
|
5799
5949
|
interface GitOpsApplicationsApplicationSpecSourceHelmFileParameter {
|
|
5800
5950
|
/**
|
|
5801
|
-
* Name of the
|
|
5951
|
+
* Name of the Helm parameter.
|
|
5802
5952
|
*/
|
|
5803
|
-
name
|
|
5953
|
+
name: pulumi.Input<string>;
|
|
5804
5954
|
/**
|
|
5805
|
-
* Path to the file containing the values
|
|
5955
|
+
* Path to the file containing the values for the Helm parameter.
|
|
5806
5956
|
*/
|
|
5807
|
-
path
|
|
5957
|
+
path: pulumi.Input<string>;
|
|
5808
5958
|
}
|
|
5809
5959
|
interface GitOpsApplicationsApplicationSpecSourceHelmParameter {
|
|
5810
5960
|
/**
|
|
5811
|
-
*
|
|
5961
|
+
* Determines whether to tell Helm to interpret booleans and numbers as strings.
|
|
5812
5962
|
*/
|
|
5813
5963
|
forceString?: pulumi.Input<boolean>;
|
|
5814
5964
|
/**
|
|
5815
|
-
* Name of the
|
|
5965
|
+
* Name of the Helm parameter.
|
|
5816
5966
|
*/
|
|
5817
5967
|
name?: pulumi.Input<string>;
|
|
5818
5968
|
/**
|
|
@@ -7164,7 +7314,7 @@ export declare namespace platform {
|
|
|
7164
7314
|
/**
|
|
7165
7315
|
* 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.
|
|
7166
7316
|
*/
|
|
7167
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
7317
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
7168
7318
|
/**
|
|
7169
7319
|
* Location of the application's manifests or chart.
|
|
7170
7320
|
*/
|
|
@@ -7351,6 +7501,14 @@ export declare namespace platform {
|
|
|
7351
7501
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
7352
7502
|
*/
|
|
7353
7503
|
skipCrds?: pulumi.Input<boolean>;
|
|
7504
|
+
/**
|
|
7505
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
7506
|
+
*/
|
|
7507
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
7508
|
+
/**
|
|
7509
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
7510
|
+
*/
|
|
7511
|
+
skipTests?: pulumi.Input<boolean>;
|
|
7354
7512
|
/**
|
|
7355
7513
|
* List of Helm value files to use when generating a template.
|
|
7356
7514
|
*/
|
|
@@ -7359,6 +7517,16 @@ export declare namespace platform {
|
|
|
7359
7517
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
7360
7518
|
*/
|
|
7361
7519
|
values?: pulumi.Input<string>;
|
|
7520
|
+
/**
|
|
7521
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
7522
|
+
*/
|
|
7523
|
+
valuesObject?: pulumi.Input<{
|
|
7524
|
+
[key: string]: pulumi.Input<string>;
|
|
7525
|
+
}>;
|
|
7526
|
+
/**
|
|
7527
|
+
* Helm version to use for templating (either "2" or "3").
|
|
7528
|
+
*/
|
|
7529
|
+
version?: pulumi.Input<string>;
|
|
7362
7530
|
}
|
|
7363
7531
|
interface GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
7364
7532
|
/**
|
|
@@ -7594,7 +7762,7 @@ export declare namespace platform {
|
|
|
7594
7762
|
/**
|
|
7595
7763
|
* 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.
|
|
7596
7764
|
*/
|
|
7597
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
7765
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
7598
7766
|
/**
|
|
7599
7767
|
* Location of the application's manifests or chart.
|
|
7600
7768
|
*/
|
|
@@ -7781,6 +7949,14 @@ export declare namespace platform {
|
|
|
7781
7949
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
7782
7950
|
*/
|
|
7783
7951
|
skipCrds?: pulumi.Input<boolean>;
|
|
7952
|
+
/**
|
|
7953
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
7954
|
+
*/
|
|
7955
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
7956
|
+
/**
|
|
7957
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
7958
|
+
*/
|
|
7959
|
+
skipTests?: pulumi.Input<boolean>;
|
|
7784
7960
|
/**
|
|
7785
7961
|
* List of Helm value files to use when generating a template.
|
|
7786
7962
|
*/
|
|
@@ -7789,6 +7965,16 @@ export declare namespace platform {
|
|
|
7789
7965
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
7790
7966
|
*/
|
|
7791
7967
|
values?: pulumi.Input<string>;
|
|
7968
|
+
/**
|
|
7969
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
7970
|
+
*/
|
|
7971
|
+
valuesObject?: pulumi.Input<{
|
|
7972
|
+
[key: string]: pulumi.Input<string>;
|
|
7973
|
+
}>;
|
|
7974
|
+
/**
|
|
7975
|
+
* Helm version to use for templating (either "2" or "3").
|
|
7976
|
+
*/
|
|
7977
|
+
version?: pulumi.Input<string>;
|
|
7792
7978
|
}
|
|
7793
7979
|
interface GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
7794
7980
|
/**
|
|
@@ -8040,7 +8226,7 @@ export declare namespace platform {
|
|
|
8040
8226
|
/**
|
|
8041
8227
|
* 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.
|
|
8042
8228
|
*/
|
|
8043
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
8229
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
8044
8230
|
/**
|
|
8045
8231
|
* Location of the application's manifests or chart.
|
|
8046
8232
|
*/
|
|
@@ -8227,6 +8413,14 @@ export declare namespace platform {
|
|
|
8227
8413
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
8228
8414
|
*/
|
|
8229
8415
|
skipCrds?: pulumi.Input<boolean>;
|
|
8416
|
+
/**
|
|
8417
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
8418
|
+
*/
|
|
8419
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
8420
|
+
/**
|
|
8421
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
8422
|
+
*/
|
|
8423
|
+
skipTests?: pulumi.Input<boolean>;
|
|
8230
8424
|
/**
|
|
8231
8425
|
* List of Helm value files to use when generating a template.
|
|
8232
8426
|
*/
|
|
@@ -8235,6 +8429,16 @@ export declare namespace platform {
|
|
|
8235
8429
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
8236
8430
|
*/
|
|
8237
8431
|
values?: pulumi.Input<string>;
|
|
8432
|
+
/**
|
|
8433
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
8434
|
+
*/
|
|
8435
|
+
valuesObject?: pulumi.Input<{
|
|
8436
|
+
[key: string]: pulumi.Input<string>;
|
|
8437
|
+
}>;
|
|
8438
|
+
/**
|
|
8439
|
+
* Helm version to use for templating (either "2" or "3").
|
|
8440
|
+
*/
|
|
8441
|
+
version?: pulumi.Input<string>;
|
|
8238
8442
|
}
|
|
8239
8443
|
interface GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
8240
8444
|
/**
|
|
@@ -8390,7 +8594,7 @@ export declare namespace platform {
|
|
|
8390
8594
|
}
|
|
8391
8595
|
interface GitopsApplicationsetApplicationsetSpecGeneratorList {
|
|
8392
8596
|
/**
|
|
8393
|
-
* List of key/value pairs to pass as parameters into the template
|
|
8597
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
8394
8598
|
*/
|
|
8395
8599
|
elements: pulumi.Input<pulumi.Input<{
|
|
8396
8600
|
[key: string]: pulumi.Input<string>;
|
|
@@ -8456,7 +8660,7 @@ export declare namespace platform {
|
|
|
8456
8660
|
/**
|
|
8457
8661
|
* 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.
|
|
8458
8662
|
*/
|
|
8459
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
8663
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
8460
8664
|
/**
|
|
8461
8665
|
* Location of the application's manifests or chart.
|
|
8462
8666
|
*/
|
|
@@ -8643,6 +8847,14 @@ export declare namespace platform {
|
|
|
8643
8847
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
8644
8848
|
*/
|
|
8645
8849
|
skipCrds?: pulumi.Input<boolean>;
|
|
8850
|
+
/**
|
|
8851
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
8852
|
+
*/
|
|
8853
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
8854
|
+
/**
|
|
8855
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
8856
|
+
*/
|
|
8857
|
+
skipTests?: pulumi.Input<boolean>;
|
|
8646
8858
|
/**
|
|
8647
8859
|
* List of Helm value files to use when generating a template.
|
|
8648
8860
|
*/
|
|
@@ -8651,6 +8863,16 @@ export declare namespace platform {
|
|
|
8651
8863
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
8652
8864
|
*/
|
|
8653
8865
|
values?: pulumi.Input<string>;
|
|
8866
|
+
/**
|
|
8867
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
8868
|
+
*/
|
|
8869
|
+
valuesObject?: pulumi.Input<{
|
|
8870
|
+
[key: string]: pulumi.Input<string>;
|
|
8871
|
+
}>;
|
|
8872
|
+
/**
|
|
8873
|
+
* Helm version to use for templating (either "2" or "3").
|
|
8874
|
+
*/
|
|
8875
|
+
version?: pulumi.Input<string>;
|
|
8654
8876
|
}
|
|
8655
8877
|
interface GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
8656
8878
|
/**
|
|
@@ -8982,7 +9204,7 @@ export declare namespace platform {
|
|
|
8982
9204
|
/**
|
|
8983
9205
|
* 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.
|
|
8984
9206
|
*/
|
|
8985
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
9207
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
8986
9208
|
/**
|
|
8987
9209
|
* Location of the application's manifests or chart.
|
|
8988
9210
|
*/
|
|
@@ -9169,6 +9391,14 @@ export declare namespace platform {
|
|
|
9169
9391
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
9170
9392
|
*/
|
|
9171
9393
|
skipCrds?: pulumi.Input<boolean>;
|
|
9394
|
+
/**
|
|
9395
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
9396
|
+
*/
|
|
9397
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
9398
|
+
/**
|
|
9399
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
9400
|
+
*/
|
|
9401
|
+
skipTests?: pulumi.Input<boolean>;
|
|
9172
9402
|
/**
|
|
9173
9403
|
* List of Helm value files to use when generating a template.
|
|
9174
9404
|
*/
|
|
@@ -9177,6 +9407,16 @@ export declare namespace platform {
|
|
|
9177
9407
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9178
9408
|
*/
|
|
9179
9409
|
values?: pulumi.Input<string>;
|
|
9410
|
+
/**
|
|
9411
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9412
|
+
*/
|
|
9413
|
+
valuesObject?: pulumi.Input<{
|
|
9414
|
+
[key: string]: pulumi.Input<string>;
|
|
9415
|
+
}>;
|
|
9416
|
+
/**
|
|
9417
|
+
* Helm version to use for templating (either "2" or "3").
|
|
9418
|
+
*/
|
|
9419
|
+
version?: pulumi.Input<string>;
|
|
9180
9420
|
}
|
|
9181
9421
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
9182
9422
|
/**
|
|
@@ -9412,7 +9652,7 @@ export declare namespace platform {
|
|
|
9412
9652
|
/**
|
|
9413
9653
|
* 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.
|
|
9414
9654
|
*/
|
|
9415
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
9655
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
9416
9656
|
/**
|
|
9417
9657
|
* Location of the application's manifests or chart.
|
|
9418
9658
|
*/
|
|
@@ -9599,6 +9839,14 @@ export declare namespace platform {
|
|
|
9599
9839
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
9600
9840
|
*/
|
|
9601
9841
|
skipCrds?: pulumi.Input<boolean>;
|
|
9842
|
+
/**
|
|
9843
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
9844
|
+
*/
|
|
9845
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
9846
|
+
/**
|
|
9847
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
9848
|
+
*/
|
|
9849
|
+
skipTests?: pulumi.Input<boolean>;
|
|
9602
9850
|
/**
|
|
9603
9851
|
* List of Helm value files to use when generating a template.
|
|
9604
9852
|
*/
|
|
@@ -9607,6 +9855,16 @@ export declare namespace platform {
|
|
|
9607
9855
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9608
9856
|
*/
|
|
9609
9857
|
values?: pulumi.Input<string>;
|
|
9858
|
+
/**
|
|
9859
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
9860
|
+
*/
|
|
9861
|
+
valuesObject?: pulumi.Input<{
|
|
9862
|
+
[key: string]: pulumi.Input<string>;
|
|
9863
|
+
}>;
|
|
9864
|
+
/**
|
|
9865
|
+
* Helm version to use for templating (either "2" or "3").
|
|
9866
|
+
*/
|
|
9867
|
+
version?: pulumi.Input<string>;
|
|
9610
9868
|
}
|
|
9611
9869
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
9612
9870
|
/**
|
|
@@ -9858,7 +10116,7 @@ export declare namespace platform {
|
|
|
9858
10116
|
/**
|
|
9859
10117
|
* 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.
|
|
9860
10118
|
*/
|
|
9861
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
10119
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
9862
10120
|
/**
|
|
9863
10121
|
* Location of the application's manifests or chart.
|
|
9864
10122
|
*/
|
|
@@ -10045,6 +10303,14 @@ export declare namespace platform {
|
|
|
10045
10303
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
10046
10304
|
*/
|
|
10047
10305
|
skipCrds?: pulumi.Input<boolean>;
|
|
10306
|
+
/**
|
|
10307
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
10308
|
+
*/
|
|
10309
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
10310
|
+
/**
|
|
10311
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
10312
|
+
*/
|
|
10313
|
+
skipTests?: pulumi.Input<boolean>;
|
|
10048
10314
|
/**
|
|
10049
10315
|
* List of Helm value files to use when generating a template.
|
|
10050
10316
|
*/
|
|
@@ -10053,6 +10319,16 @@ export declare namespace platform {
|
|
|
10053
10319
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10054
10320
|
*/
|
|
10055
10321
|
values?: pulumi.Input<string>;
|
|
10322
|
+
/**
|
|
10323
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10324
|
+
*/
|
|
10325
|
+
valuesObject?: pulumi.Input<{
|
|
10326
|
+
[key: string]: pulumi.Input<string>;
|
|
10327
|
+
}>;
|
|
10328
|
+
/**
|
|
10329
|
+
* Helm version to use for templating (either "2" or "3").
|
|
10330
|
+
*/
|
|
10331
|
+
version?: pulumi.Input<string>;
|
|
10056
10332
|
}
|
|
10057
10333
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
10058
10334
|
/**
|
|
@@ -10208,7 +10484,7 @@ export declare namespace platform {
|
|
|
10208
10484
|
}
|
|
10209
10485
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorList {
|
|
10210
10486
|
/**
|
|
10211
|
-
* List of key/value pairs to pass as parameters into the template
|
|
10487
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
10212
10488
|
*/
|
|
10213
10489
|
elements: pulumi.Input<pulumi.Input<{
|
|
10214
10490
|
[key: string]: pulumi.Input<string>;
|
|
@@ -10274,7 +10550,7 @@ export declare namespace platform {
|
|
|
10274
10550
|
/**
|
|
10275
10551
|
* 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.
|
|
10276
10552
|
*/
|
|
10277
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
10553
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
10278
10554
|
/**
|
|
10279
10555
|
* Location of the application's manifests or chart.
|
|
10280
10556
|
*/
|
|
@@ -10461,6 +10737,14 @@ export declare namespace platform {
|
|
|
10461
10737
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
10462
10738
|
*/
|
|
10463
10739
|
skipCrds?: pulumi.Input<boolean>;
|
|
10740
|
+
/**
|
|
10741
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
10742
|
+
*/
|
|
10743
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
10744
|
+
/**
|
|
10745
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
10746
|
+
*/
|
|
10747
|
+
skipTests?: pulumi.Input<boolean>;
|
|
10464
10748
|
/**
|
|
10465
10749
|
* List of Helm value files to use when generating a template.
|
|
10466
10750
|
*/
|
|
@@ -10469,6 +10753,16 @@ export declare namespace platform {
|
|
|
10469
10753
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10470
10754
|
*/
|
|
10471
10755
|
values?: pulumi.Input<string>;
|
|
10756
|
+
/**
|
|
10757
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10758
|
+
*/
|
|
10759
|
+
valuesObject?: pulumi.Input<{
|
|
10760
|
+
[key: string]: pulumi.Input<string>;
|
|
10761
|
+
}>;
|
|
10762
|
+
/**
|
|
10763
|
+
* Helm version to use for templating (either "2" or "3").
|
|
10764
|
+
*/
|
|
10765
|
+
version?: pulumi.Input<string>;
|
|
10472
10766
|
}
|
|
10473
10767
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
10474
10768
|
/**
|
|
@@ -10792,7 +11086,7 @@ export declare namespace platform {
|
|
|
10792
11086
|
/**
|
|
10793
11087
|
* 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.
|
|
10794
11088
|
*/
|
|
10795
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
11089
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
10796
11090
|
/**
|
|
10797
11091
|
* Location of the application's manifests or chart.
|
|
10798
11092
|
*/
|
|
@@ -10979,6 +11273,14 @@ export declare namespace platform {
|
|
|
10979
11273
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
10980
11274
|
*/
|
|
10981
11275
|
skipCrds?: pulumi.Input<boolean>;
|
|
11276
|
+
/**
|
|
11277
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
11278
|
+
*/
|
|
11279
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
11280
|
+
/**
|
|
11281
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
11282
|
+
*/
|
|
11283
|
+
skipTests?: pulumi.Input<boolean>;
|
|
10982
11284
|
/**
|
|
10983
11285
|
* List of Helm value files to use when generating a template.
|
|
10984
11286
|
*/
|
|
@@ -10987,6 +11289,16 @@ export declare namespace platform {
|
|
|
10987
11289
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
10988
11290
|
*/
|
|
10989
11291
|
values?: pulumi.Input<string>;
|
|
11292
|
+
/**
|
|
11293
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11294
|
+
*/
|
|
11295
|
+
valuesObject?: pulumi.Input<{
|
|
11296
|
+
[key: string]: pulumi.Input<string>;
|
|
11297
|
+
}>;
|
|
11298
|
+
/**
|
|
11299
|
+
* Helm version to use for templating (either "2" or "3").
|
|
11300
|
+
*/
|
|
11301
|
+
version?: pulumi.Input<string>;
|
|
10990
11302
|
}
|
|
10991
11303
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
10992
11304
|
/**
|
|
@@ -11222,7 +11534,7 @@ export declare namespace platform {
|
|
|
11222
11534
|
/**
|
|
11223
11535
|
* 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.
|
|
11224
11536
|
*/
|
|
11225
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
11537
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
11226
11538
|
/**
|
|
11227
11539
|
* Location of the application's manifests or chart.
|
|
11228
11540
|
*/
|
|
@@ -11409,6 +11721,14 @@ export declare namespace platform {
|
|
|
11409
11721
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
11410
11722
|
*/
|
|
11411
11723
|
skipCrds?: pulumi.Input<boolean>;
|
|
11724
|
+
/**
|
|
11725
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
11726
|
+
*/
|
|
11727
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
11728
|
+
/**
|
|
11729
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
11730
|
+
*/
|
|
11731
|
+
skipTests?: pulumi.Input<boolean>;
|
|
11412
11732
|
/**
|
|
11413
11733
|
* List of Helm value files to use when generating a template.
|
|
11414
11734
|
*/
|
|
@@ -11417,6 +11737,16 @@ export declare namespace platform {
|
|
|
11417
11737
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11418
11738
|
*/
|
|
11419
11739
|
values?: pulumi.Input<string>;
|
|
11740
|
+
/**
|
|
11741
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11742
|
+
*/
|
|
11743
|
+
valuesObject?: pulumi.Input<{
|
|
11744
|
+
[key: string]: pulumi.Input<string>;
|
|
11745
|
+
}>;
|
|
11746
|
+
/**
|
|
11747
|
+
* Helm version to use for templating (either "2" or "3").
|
|
11748
|
+
*/
|
|
11749
|
+
version?: pulumi.Input<string>;
|
|
11420
11750
|
}
|
|
11421
11751
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
11422
11752
|
/**
|
|
@@ -11668,7 +11998,7 @@ export declare namespace platform {
|
|
|
11668
11998
|
/**
|
|
11669
11999
|
* 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.
|
|
11670
12000
|
*/
|
|
11671
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
12001
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
11672
12002
|
/**
|
|
11673
12003
|
* Location of the application's manifests or chart.
|
|
11674
12004
|
*/
|
|
@@ -11855,6 +12185,14 @@ export declare namespace platform {
|
|
|
11855
12185
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
11856
12186
|
*/
|
|
11857
12187
|
skipCrds?: pulumi.Input<boolean>;
|
|
12188
|
+
/**
|
|
12189
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
12190
|
+
*/
|
|
12191
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
12192
|
+
/**
|
|
12193
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
12194
|
+
*/
|
|
12195
|
+
skipTests?: pulumi.Input<boolean>;
|
|
11858
12196
|
/**
|
|
11859
12197
|
* List of Helm value files to use when generating a template.
|
|
11860
12198
|
*/
|
|
@@ -11863,6 +12201,16 @@ export declare namespace platform {
|
|
|
11863
12201
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
11864
12202
|
*/
|
|
11865
12203
|
values?: pulumi.Input<string>;
|
|
12204
|
+
/**
|
|
12205
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
12206
|
+
*/
|
|
12207
|
+
valuesObject?: pulumi.Input<{
|
|
12208
|
+
[key: string]: pulumi.Input<string>;
|
|
12209
|
+
}>;
|
|
12210
|
+
/**
|
|
12211
|
+
* Helm version to use for templating (either "2" or "3").
|
|
12212
|
+
*/
|
|
12213
|
+
version?: pulumi.Input<string>;
|
|
11866
12214
|
}
|
|
11867
12215
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
11868
12216
|
/**
|
|
@@ -12018,7 +12366,7 @@ export declare namespace platform {
|
|
|
12018
12366
|
}
|
|
12019
12367
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorList {
|
|
12020
12368
|
/**
|
|
12021
|
-
* List of key/value pairs to pass as parameters into the template
|
|
12369
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
12022
12370
|
*/
|
|
12023
12371
|
elements: pulumi.Input<pulumi.Input<{
|
|
12024
12372
|
[key: string]: pulumi.Input<string>;
|
|
@@ -12084,7 +12432,7 @@ export declare namespace platform {
|
|
|
12084
12432
|
/**
|
|
12085
12433
|
* 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.
|
|
12086
12434
|
*/
|
|
12087
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
12435
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
12088
12436
|
/**
|
|
12089
12437
|
* Location of the application's manifests or chart.
|
|
12090
12438
|
*/
|
|
@@ -12271,6 +12619,14 @@ export declare namespace platform {
|
|
|
12271
12619
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
12272
12620
|
*/
|
|
12273
12621
|
skipCrds?: pulumi.Input<boolean>;
|
|
12622
|
+
/**
|
|
12623
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
12624
|
+
*/
|
|
12625
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
12626
|
+
/**
|
|
12627
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
12628
|
+
*/
|
|
12629
|
+
skipTests?: pulumi.Input<boolean>;
|
|
12274
12630
|
/**
|
|
12275
12631
|
* List of Helm value files to use when generating a template.
|
|
12276
12632
|
*/
|
|
@@ -12279,6 +12635,16 @@ export declare namespace platform {
|
|
|
12279
12635
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
12280
12636
|
*/
|
|
12281
12637
|
values?: pulumi.Input<string>;
|
|
12638
|
+
/**
|
|
12639
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
12640
|
+
*/
|
|
12641
|
+
valuesObject?: pulumi.Input<{
|
|
12642
|
+
[key: string]: pulumi.Input<string>;
|
|
12643
|
+
}>;
|
|
12644
|
+
/**
|
|
12645
|
+
* Helm version to use for templating (either "2" or "3").
|
|
12646
|
+
*/
|
|
12647
|
+
version?: pulumi.Input<string>;
|
|
12282
12648
|
}
|
|
12283
12649
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
12284
12650
|
/**
|
|
@@ -12662,7 +13028,7 @@ export declare namespace platform {
|
|
|
12662
13028
|
/**
|
|
12663
13029
|
* 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.
|
|
12664
13030
|
*/
|
|
12665
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
13031
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
12666
13032
|
/**
|
|
12667
13033
|
* Location of the application's manifests or chart.
|
|
12668
13034
|
*/
|
|
@@ -12849,6 +13215,14 @@ export declare namespace platform {
|
|
|
12849
13215
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
12850
13216
|
*/
|
|
12851
13217
|
skipCrds?: pulumi.Input<boolean>;
|
|
13218
|
+
/**
|
|
13219
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
13220
|
+
*/
|
|
13221
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
13222
|
+
/**
|
|
13223
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
13224
|
+
*/
|
|
13225
|
+
skipTests?: pulumi.Input<boolean>;
|
|
12852
13226
|
/**
|
|
12853
13227
|
* List of Helm value files to use when generating a template.
|
|
12854
13228
|
*/
|
|
@@ -12857,6 +13231,16 @@ export declare namespace platform {
|
|
|
12857
13231
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
12858
13232
|
*/
|
|
12859
13233
|
values?: pulumi.Input<string>;
|
|
13234
|
+
/**
|
|
13235
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
13236
|
+
*/
|
|
13237
|
+
valuesObject?: pulumi.Input<{
|
|
13238
|
+
[key: string]: pulumi.Input<string>;
|
|
13239
|
+
}>;
|
|
13240
|
+
/**
|
|
13241
|
+
* Helm version to use for templating (either "2" or "3").
|
|
13242
|
+
*/
|
|
13243
|
+
version?: pulumi.Input<string>;
|
|
12860
13244
|
}
|
|
12861
13245
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
12862
13246
|
/**
|
|
@@ -13324,7 +13708,7 @@ export declare namespace platform {
|
|
|
13324
13708
|
/**
|
|
13325
13709
|
* 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.
|
|
13326
13710
|
*/
|
|
13327
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
13711
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
13328
13712
|
/**
|
|
13329
13713
|
* Location of the application's manifests or chart.
|
|
13330
13714
|
*/
|
|
@@ -13511,6 +13895,14 @@ export declare namespace platform {
|
|
|
13511
13895
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
13512
13896
|
*/
|
|
13513
13897
|
skipCrds?: pulumi.Input<boolean>;
|
|
13898
|
+
/**
|
|
13899
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
13900
|
+
*/
|
|
13901
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
13902
|
+
/**
|
|
13903
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
13904
|
+
*/
|
|
13905
|
+
skipTests?: pulumi.Input<boolean>;
|
|
13514
13906
|
/**
|
|
13515
13907
|
* List of Helm value files to use when generating a template.
|
|
13516
13908
|
*/
|
|
@@ -13519,6 +13911,16 @@ export declare namespace platform {
|
|
|
13519
13911
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
13520
13912
|
*/
|
|
13521
13913
|
values?: pulumi.Input<string>;
|
|
13914
|
+
/**
|
|
13915
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
13916
|
+
*/
|
|
13917
|
+
valuesObject?: pulumi.Input<{
|
|
13918
|
+
[key: string]: pulumi.Input<string>;
|
|
13919
|
+
}>;
|
|
13920
|
+
/**
|
|
13921
|
+
* Helm version to use for templating (either "2" or "3").
|
|
13922
|
+
*/
|
|
13923
|
+
version?: pulumi.Input<string>;
|
|
13522
13924
|
}
|
|
13523
13925
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
13524
13926
|
/**
|
|
@@ -13754,7 +14156,7 @@ export declare namespace platform {
|
|
|
13754
14156
|
/**
|
|
13755
14157
|
* 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.
|
|
13756
14158
|
*/
|
|
13757
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
14159
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
13758
14160
|
/**
|
|
13759
14161
|
* Location of the application's manifests or chart.
|
|
13760
14162
|
*/
|
|
@@ -13941,6 +14343,14 @@ export declare namespace platform {
|
|
|
13941
14343
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
13942
14344
|
*/
|
|
13943
14345
|
skipCrds?: pulumi.Input<boolean>;
|
|
14346
|
+
/**
|
|
14347
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
14348
|
+
*/
|
|
14349
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
14350
|
+
/**
|
|
14351
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
14352
|
+
*/
|
|
14353
|
+
skipTests?: pulumi.Input<boolean>;
|
|
13944
14354
|
/**
|
|
13945
14355
|
* List of Helm value files to use when generating a template.
|
|
13946
14356
|
*/
|
|
@@ -13949,6 +14359,16 @@ export declare namespace platform {
|
|
|
13949
14359
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
13950
14360
|
*/
|
|
13951
14361
|
values?: pulumi.Input<string>;
|
|
14362
|
+
/**
|
|
14363
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
14364
|
+
*/
|
|
14365
|
+
valuesObject?: pulumi.Input<{
|
|
14366
|
+
[key: string]: pulumi.Input<string>;
|
|
14367
|
+
}>;
|
|
14368
|
+
/**
|
|
14369
|
+
* Helm version to use for templating (either "2" or "3").
|
|
14370
|
+
*/
|
|
14371
|
+
version?: pulumi.Input<string>;
|
|
13952
14372
|
}
|
|
13953
14373
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameter {
|
|
13954
14374
|
/**
|
|
@@ -14276,7 +14696,7 @@ export declare namespace platform {
|
|
|
14276
14696
|
/**
|
|
14277
14697
|
* 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.
|
|
14278
14698
|
*/
|
|
14279
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
14699
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
14280
14700
|
/**
|
|
14281
14701
|
* Location of the application's manifests or chart.
|
|
14282
14702
|
*/
|
|
@@ -14463,6 +14883,14 @@ export declare namespace platform {
|
|
|
14463
14883
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
14464
14884
|
*/
|
|
14465
14885
|
skipCrds?: pulumi.Input<boolean>;
|
|
14886
|
+
/**
|
|
14887
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
14888
|
+
*/
|
|
14889
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
14890
|
+
/**
|
|
14891
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
14892
|
+
*/
|
|
14893
|
+
skipTests?: pulumi.Input<boolean>;
|
|
14466
14894
|
/**
|
|
14467
14895
|
* List of Helm value files to use when generating a template.
|
|
14468
14896
|
*/
|
|
@@ -14471,6 +14899,16 @@ export declare namespace platform {
|
|
|
14471
14899
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
14472
14900
|
*/
|
|
14473
14901
|
values?: pulumi.Input<string>;
|
|
14902
|
+
/**
|
|
14903
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
14904
|
+
*/
|
|
14905
|
+
valuesObject?: pulumi.Input<{
|
|
14906
|
+
[key: string]: pulumi.Input<string>;
|
|
14907
|
+
}>;
|
|
14908
|
+
/**
|
|
14909
|
+
* Helm version to use for templating (either "2" or "3").
|
|
14910
|
+
*/
|
|
14911
|
+
version?: pulumi.Input<string>;
|
|
14474
14912
|
}
|
|
14475
14913
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
14476
14914
|
/**
|
|
@@ -14706,7 +15144,7 @@ export declare namespace platform {
|
|
|
14706
15144
|
/**
|
|
14707
15145
|
* 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.
|
|
14708
15146
|
*/
|
|
14709
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
15147
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
14710
15148
|
/**
|
|
14711
15149
|
* Location of the application's manifests or chart.
|
|
14712
15150
|
*/
|
|
@@ -14893,6 +15331,14 @@ export declare namespace platform {
|
|
|
14893
15331
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
14894
15332
|
*/
|
|
14895
15333
|
skipCrds?: pulumi.Input<boolean>;
|
|
15334
|
+
/**
|
|
15335
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
15336
|
+
*/
|
|
15337
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
15338
|
+
/**
|
|
15339
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
15340
|
+
*/
|
|
15341
|
+
skipTests?: pulumi.Input<boolean>;
|
|
14896
15342
|
/**
|
|
14897
15343
|
* List of Helm value files to use when generating a template.
|
|
14898
15344
|
*/
|
|
@@ -14901,6 +15347,16 @@ export declare namespace platform {
|
|
|
14901
15347
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
14902
15348
|
*/
|
|
14903
15349
|
values?: pulumi.Input<string>;
|
|
15350
|
+
/**
|
|
15351
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
15352
|
+
*/
|
|
15353
|
+
valuesObject?: pulumi.Input<{
|
|
15354
|
+
[key: string]: pulumi.Input<string>;
|
|
15355
|
+
}>;
|
|
15356
|
+
/**
|
|
15357
|
+
* Helm version to use for templating (either "2" or "3").
|
|
15358
|
+
*/
|
|
15359
|
+
version?: pulumi.Input<string>;
|
|
14904
15360
|
}
|
|
14905
15361
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
14906
15362
|
/**
|
|
@@ -15152,7 +15608,7 @@ export declare namespace platform {
|
|
|
15152
15608
|
/**
|
|
15153
15609
|
* 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.
|
|
15154
15610
|
*/
|
|
15155
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
15611
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
15156
15612
|
/**
|
|
15157
15613
|
* Location of the application's manifests or chart.
|
|
15158
15614
|
*/
|
|
@@ -15339,6 +15795,14 @@ export declare namespace platform {
|
|
|
15339
15795
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
15340
15796
|
*/
|
|
15341
15797
|
skipCrds?: pulumi.Input<boolean>;
|
|
15798
|
+
/**
|
|
15799
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
15800
|
+
*/
|
|
15801
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
15802
|
+
/**
|
|
15803
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
15804
|
+
*/
|
|
15805
|
+
skipTests?: pulumi.Input<boolean>;
|
|
15342
15806
|
/**
|
|
15343
15807
|
* List of Helm value files to use when generating a template.
|
|
15344
15808
|
*/
|
|
@@ -15347,6 +15811,16 @@ export declare namespace platform {
|
|
|
15347
15811
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
15348
15812
|
*/
|
|
15349
15813
|
values?: pulumi.Input<string>;
|
|
15814
|
+
/**
|
|
15815
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
15816
|
+
*/
|
|
15817
|
+
valuesObject?: pulumi.Input<{
|
|
15818
|
+
[key: string]: pulumi.Input<string>;
|
|
15819
|
+
}>;
|
|
15820
|
+
/**
|
|
15821
|
+
* Helm version to use for templating (either "2" or "3").
|
|
15822
|
+
*/
|
|
15823
|
+
version?: pulumi.Input<string>;
|
|
15350
15824
|
}
|
|
15351
15825
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
15352
15826
|
/**
|
|
@@ -15502,7 +15976,7 @@ export declare namespace platform {
|
|
|
15502
15976
|
}
|
|
15503
15977
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorList {
|
|
15504
15978
|
/**
|
|
15505
|
-
* List of key/value pairs to pass as parameters into the template
|
|
15979
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
15506
15980
|
*/
|
|
15507
15981
|
elements: pulumi.Input<pulumi.Input<{
|
|
15508
15982
|
[key: string]: pulumi.Input<string>;
|
|
@@ -15568,7 +16042,7 @@ export declare namespace platform {
|
|
|
15568
16042
|
/**
|
|
15569
16043
|
* 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.
|
|
15570
16044
|
*/
|
|
15571
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
16045
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
15572
16046
|
/**
|
|
15573
16047
|
* Location of the application's manifests or chart.
|
|
15574
16048
|
*/
|
|
@@ -15755,6 +16229,14 @@ export declare namespace platform {
|
|
|
15755
16229
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
15756
16230
|
*/
|
|
15757
16231
|
skipCrds?: pulumi.Input<boolean>;
|
|
16232
|
+
/**
|
|
16233
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
16234
|
+
*/
|
|
16235
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
16236
|
+
/**
|
|
16237
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
16238
|
+
*/
|
|
16239
|
+
skipTests?: pulumi.Input<boolean>;
|
|
15758
16240
|
/**
|
|
15759
16241
|
* List of Helm value files to use when generating a template.
|
|
15760
16242
|
*/
|
|
@@ -15763,6 +16245,16 @@ export declare namespace platform {
|
|
|
15763
16245
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
15764
16246
|
*/
|
|
15765
16247
|
values?: pulumi.Input<string>;
|
|
16248
|
+
/**
|
|
16249
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
16250
|
+
*/
|
|
16251
|
+
valuesObject?: pulumi.Input<{
|
|
16252
|
+
[key: string]: pulumi.Input<string>;
|
|
16253
|
+
}>;
|
|
16254
|
+
/**
|
|
16255
|
+
* Helm version to use for templating (either "2" or "3").
|
|
16256
|
+
*/
|
|
16257
|
+
version?: pulumi.Input<string>;
|
|
15766
16258
|
}
|
|
15767
16259
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
15768
16260
|
/**
|
|
@@ -16146,7 +16638,7 @@ export declare namespace platform {
|
|
|
16146
16638
|
/**
|
|
16147
16639
|
* 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.
|
|
16148
16640
|
*/
|
|
16149
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
16641
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
16150
16642
|
/**
|
|
16151
16643
|
* Location of the application's manifests or chart.
|
|
16152
16644
|
*/
|
|
@@ -16333,6 +16825,14 @@ export declare namespace platform {
|
|
|
16333
16825
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
16334
16826
|
*/
|
|
16335
16827
|
skipCrds?: pulumi.Input<boolean>;
|
|
16828
|
+
/**
|
|
16829
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
16830
|
+
*/
|
|
16831
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
16832
|
+
/**
|
|
16833
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
16834
|
+
*/
|
|
16835
|
+
skipTests?: pulumi.Input<boolean>;
|
|
16336
16836
|
/**
|
|
16337
16837
|
* List of Helm value files to use when generating a template.
|
|
16338
16838
|
*/
|
|
@@ -16341,6 +16841,16 @@ export declare namespace platform {
|
|
|
16341
16841
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
16342
16842
|
*/
|
|
16343
16843
|
values?: pulumi.Input<string>;
|
|
16844
|
+
/**
|
|
16845
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
16846
|
+
*/
|
|
16847
|
+
valuesObject?: pulumi.Input<{
|
|
16848
|
+
[key: string]: pulumi.Input<string>;
|
|
16849
|
+
}>;
|
|
16850
|
+
/**
|
|
16851
|
+
* Helm version to use for templating (either "2" or "3").
|
|
16852
|
+
*/
|
|
16853
|
+
version?: pulumi.Input<string>;
|
|
16344
16854
|
}
|
|
16345
16855
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
16346
16856
|
/**
|
|
@@ -16808,7 +17318,7 @@ export declare namespace platform {
|
|
|
16808
17318
|
/**
|
|
16809
17319
|
* 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.
|
|
16810
17320
|
*/
|
|
16811
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
17321
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
16812
17322
|
/**
|
|
16813
17323
|
* Location of the application's manifests or chart.
|
|
16814
17324
|
*/
|
|
@@ -16995,6 +17505,14 @@ export declare namespace platform {
|
|
|
16995
17505
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
16996
17506
|
*/
|
|
16997
17507
|
skipCrds?: pulumi.Input<boolean>;
|
|
17508
|
+
/**
|
|
17509
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
17510
|
+
*/
|
|
17511
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
17512
|
+
/**
|
|
17513
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
17514
|
+
*/
|
|
17515
|
+
skipTests?: pulumi.Input<boolean>;
|
|
16998
17516
|
/**
|
|
16999
17517
|
* List of Helm value files to use when generating a template.
|
|
17000
17518
|
*/
|
|
@@ -17003,6 +17521,16 @@ export declare namespace platform {
|
|
|
17003
17521
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
17004
17522
|
*/
|
|
17005
17523
|
values?: pulumi.Input<string>;
|
|
17524
|
+
/**
|
|
17525
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
17526
|
+
*/
|
|
17527
|
+
valuesObject?: pulumi.Input<{
|
|
17528
|
+
[key: string]: pulumi.Input<string>;
|
|
17529
|
+
}>;
|
|
17530
|
+
/**
|
|
17531
|
+
* Helm version to use for templating (either "2" or "3").
|
|
17532
|
+
*/
|
|
17533
|
+
version?: pulumi.Input<string>;
|
|
17006
17534
|
}
|
|
17007
17535
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
17008
17536
|
/**
|
|
@@ -17238,7 +17766,7 @@ export declare namespace platform {
|
|
|
17238
17766
|
/**
|
|
17239
17767
|
* 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.
|
|
17240
17768
|
*/
|
|
17241
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
17769
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
17242
17770
|
/**
|
|
17243
17771
|
* Location of the application's manifests or chart.
|
|
17244
17772
|
*/
|
|
@@ -17425,6 +17953,14 @@ export declare namespace platform {
|
|
|
17425
17953
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
17426
17954
|
*/
|
|
17427
17955
|
skipCrds?: pulumi.Input<boolean>;
|
|
17956
|
+
/**
|
|
17957
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
17958
|
+
*/
|
|
17959
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
17960
|
+
/**
|
|
17961
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
17962
|
+
*/
|
|
17963
|
+
skipTests?: pulumi.Input<boolean>;
|
|
17428
17964
|
/**
|
|
17429
17965
|
* List of Helm value files to use when generating a template.
|
|
17430
17966
|
*/
|
|
@@ -17433,6 +17969,16 @@ export declare namespace platform {
|
|
|
17433
17969
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
17434
17970
|
*/
|
|
17435
17971
|
values?: pulumi.Input<string>;
|
|
17972
|
+
/**
|
|
17973
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
17974
|
+
*/
|
|
17975
|
+
valuesObject?: pulumi.Input<{
|
|
17976
|
+
[key: string]: pulumi.Input<string>;
|
|
17977
|
+
}>;
|
|
17978
|
+
/**
|
|
17979
|
+
* Helm version to use for templating (either "2" or "3").
|
|
17980
|
+
*/
|
|
17981
|
+
version?: pulumi.Input<string>;
|
|
17436
17982
|
}
|
|
17437
17983
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameter {
|
|
17438
17984
|
/**
|
|
@@ -17816,7 +18362,7 @@ export declare namespace platform {
|
|
|
17816
18362
|
/**
|
|
17817
18363
|
* 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.
|
|
17818
18364
|
*/
|
|
17819
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
18365
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
17820
18366
|
/**
|
|
17821
18367
|
* Location of the application's manifests or chart.
|
|
17822
18368
|
*/
|
|
@@ -18003,6 +18549,14 @@ export declare namespace platform {
|
|
|
18003
18549
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
18004
18550
|
*/
|
|
18005
18551
|
skipCrds?: pulumi.Input<boolean>;
|
|
18552
|
+
/**
|
|
18553
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
18554
|
+
*/
|
|
18555
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
18556
|
+
/**
|
|
18557
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
18558
|
+
*/
|
|
18559
|
+
skipTests?: pulumi.Input<boolean>;
|
|
18006
18560
|
/**
|
|
18007
18561
|
* List of Helm value files to use when generating a template.
|
|
18008
18562
|
*/
|
|
@@ -18011,6 +18565,16 @@ export declare namespace platform {
|
|
|
18011
18565
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
18012
18566
|
*/
|
|
18013
18567
|
values?: pulumi.Input<string>;
|
|
18568
|
+
/**
|
|
18569
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
18570
|
+
*/
|
|
18571
|
+
valuesObject?: pulumi.Input<{
|
|
18572
|
+
[key: string]: pulumi.Input<string>;
|
|
18573
|
+
}>;
|
|
18574
|
+
/**
|
|
18575
|
+
* Helm version to use for templating (either "2" or "3").
|
|
18576
|
+
*/
|
|
18577
|
+
version?: pulumi.Input<string>;
|
|
18014
18578
|
}
|
|
18015
18579
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
18016
18580
|
/**
|
|
@@ -18478,7 +19042,7 @@ export declare namespace platform {
|
|
|
18478
19042
|
/**
|
|
18479
19043
|
* 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.
|
|
18480
19044
|
*/
|
|
18481
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
19045
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
18482
19046
|
/**
|
|
18483
19047
|
* Location of the application's manifests or chart.
|
|
18484
19048
|
*/
|
|
@@ -18665,6 +19229,14 @@ export declare namespace platform {
|
|
|
18665
19229
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
18666
19230
|
*/
|
|
18667
19231
|
skipCrds?: pulumi.Input<boolean>;
|
|
19232
|
+
/**
|
|
19233
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
19234
|
+
*/
|
|
19235
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
19236
|
+
/**
|
|
19237
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
19238
|
+
*/
|
|
19239
|
+
skipTests?: pulumi.Input<boolean>;
|
|
18668
19240
|
/**
|
|
18669
19241
|
* List of Helm value files to use when generating a template.
|
|
18670
19242
|
*/
|
|
@@ -18673,6 +19245,16 @@ export declare namespace platform {
|
|
|
18673
19245
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
18674
19246
|
*/
|
|
18675
19247
|
values?: pulumi.Input<string>;
|
|
19248
|
+
/**
|
|
19249
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19250
|
+
*/
|
|
19251
|
+
valuesObject?: pulumi.Input<{
|
|
19252
|
+
[key: string]: pulumi.Input<string>;
|
|
19253
|
+
}>;
|
|
19254
|
+
/**
|
|
19255
|
+
* Helm version to use for templating (either "2" or "3").
|
|
19256
|
+
*/
|
|
19257
|
+
version?: pulumi.Input<string>;
|
|
18676
19258
|
}
|
|
18677
19259
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
18678
19260
|
/**
|
|
@@ -18908,7 +19490,7 @@ export declare namespace platform {
|
|
|
18908
19490
|
/**
|
|
18909
19491
|
* 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.
|
|
18910
19492
|
*/
|
|
18911
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
19493
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
18912
19494
|
/**
|
|
18913
19495
|
* Location of the application's manifests or chart.
|
|
18914
19496
|
*/
|
|
@@ -19095,6 +19677,14 @@ export declare namespace platform {
|
|
|
19095
19677
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
19096
19678
|
*/
|
|
19097
19679
|
skipCrds?: pulumi.Input<boolean>;
|
|
19680
|
+
/**
|
|
19681
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
19682
|
+
*/
|
|
19683
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
19684
|
+
/**
|
|
19685
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
19686
|
+
*/
|
|
19687
|
+
skipTests?: pulumi.Input<boolean>;
|
|
19098
19688
|
/**
|
|
19099
19689
|
* List of Helm value files to use when generating a template.
|
|
19100
19690
|
*/
|
|
@@ -19103,6 +19693,16 @@ export declare namespace platform {
|
|
|
19103
19693
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19104
19694
|
*/
|
|
19105
19695
|
values?: pulumi.Input<string>;
|
|
19696
|
+
/**
|
|
19697
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19698
|
+
*/
|
|
19699
|
+
valuesObject?: pulumi.Input<{
|
|
19700
|
+
[key: string]: pulumi.Input<string>;
|
|
19701
|
+
}>;
|
|
19702
|
+
/**
|
|
19703
|
+
* Helm version to use for templating (either "2" or "3").
|
|
19704
|
+
*/
|
|
19705
|
+
version?: pulumi.Input<string>;
|
|
19106
19706
|
}
|
|
19107
19707
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameter {
|
|
19108
19708
|
/**
|
|
@@ -19438,7 +20038,7 @@ export declare namespace platform {
|
|
|
19438
20038
|
/**
|
|
19439
20039
|
* 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.
|
|
19440
20040
|
*/
|
|
19441
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
20041
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
19442
20042
|
/**
|
|
19443
20043
|
* Location of the application's manifests or chart.
|
|
19444
20044
|
*/
|
|
@@ -19625,6 +20225,14 @@ export declare namespace platform {
|
|
|
19625
20225
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
19626
20226
|
*/
|
|
19627
20227
|
skipCrds?: pulumi.Input<boolean>;
|
|
20228
|
+
/**
|
|
20229
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
20230
|
+
*/
|
|
20231
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
20232
|
+
/**
|
|
20233
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
20234
|
+
*/
|
|
20235
|
+
skipTests?: pulumi.Input<boolean>;
|
|
19628
20236
|
/**
|
|
19629
20237
|
* List of Helm value files to use when generating a template.
|
|
19630
20238
|
*/
|
|
@@ -19633,6 +20241,16 @@ export declare namespace platform {
|
|
|
19633
20241
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
19634
20242
|
*/
|
|
19635
20243
|
values?: pulumi.Input<string>;
|
|
20244
|
+
/**
|
|
20245
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20246
|
+
*/
|
|
20247
|
+
valuesObject?: pulumi.Input<{
|
|
20248
|
+
[key: string]: pulumi.Input<string>;
|
|
20249
|
+
}>;
|
|
20250
|
+
/**
|
|
20251
|
+
* Helm version to use for templating (either "2" or "3").
|
|
20252
|
+
*/
|
|
20253
|
+
version?: pulumi.Input<string>;
|
|
19636
20254
|
}
|
|
19637
20255
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
19638
20256
|
/**
|
|
@@ -19868,7 +20486,7 @@ export declare namespace platform {
|
|
|
19868
20486
|
/**
|
|
19869
20487
|
* 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.
|
|
19870
20488
|
*/
|
|
19871
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
20489
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
19872
20490
|
/**
|
|
19873
20491
|
* Location of the application's manifests or chart.
|
|
19874
20492
|
*/
|
|
@@ -20055,6 +20673,14 @@ export declare namespace platform {
|
|
|
20055
20673
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
20056
20674
|
*/
|
|
20057
20675
|
skipCrds?: pulumi.Input<boolean>;
|
|
20676
|
+
/**
|
|
20677
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
20678
|
+
*/
|
|
20679
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
20680
|
+
/**
|
|
20681
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
20682
|
+
*/
|
|
20683
|
+
skipTests?: pulumi.Input<boolean>;
|
|
20058
20684
|
/**
|
|
20059
20685
|
* List of Helm value files to use when generating a template.
|
|
20060
20686
|
*/
|
|
@@ -20063,6 +20689,16 @@ export declare namespace platform {
|
|
|
20063
20689
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20064
20690
|
*/
|
|
20065
20691
|
values?: pulumi.Input<string>;
|
|
20692
|
+
/**
|
|
20693
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20694
|
+
*/
|
|
20695
|
+
valuesObject?: pulumi.Input<{
|
|
20696
|
+
[key: string]: pulumi.Input<string>;
|
|
20697
|
+
}>;
|
|
20698
|
+
/**
|
|
20699
|
+
* Helm version to use for templating (either "2" or "3").
|
|
20700
|
+
*/
|
|
20701
|
+
version?: pulumi.Input<string>;
|
|
20066
20702
|
}
|
|
20067
20703
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
20068
20704
|
/**
|
|
@@ -20314,7 +20950,7 @@ export declare namespace platform {
|
|
|
20314
20950
|
/**
|
|
20315
20951
|
* 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.
|
|
20316
20952
|
*/
|
|
20317
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
20953
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
20318
20954
|
/**
|
|
20319
20955
|
* Location of the application's manifests or chart.
|
|
20320
20956
|
*/
|
|
@@ -20501,6 +21137,14 @@ export declare namespace platform {
|
|
|
20501
21137
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
20502
21138
|
*/
|
|
20503
21139
|
skipCrds?: pulumi.Input<boolean>;
|
|
21140
|
+
/**
|
|
21141
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
21142
|
+
*/
|
|
21143
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
21144
|
+
/**
|
|
21145
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
21146
|
+
*/
|
|
21147
|
+
skipTests?: pulumi.Input<boolean>;
|
|
20504
21148
|
/**
|
|
20505
21149
|
* List of Helm value files to use when generating a template.
|
|
20506
21150
|
*/
|
|
@@ -20509,6 +21153,16 @@ export declare namespace platform {
|
|
|
20509
21153
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20510
21154
|
*/
|
|
20511
21155
|
values?: pulumi.Input<string>;
|
|
21156
|
+
/**
|
|
21157
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
21158
|
+
*/
|
|
21159
|
+
valuesObject?: pulumi.Input<{
|
|
21160
|
+
[key: string]: pulumi.Input<string>;
|
|
21161
|
+
}>;
|
|
21162
|
+
/**
|
|
21163
|
+
* Helm version to use for templating (either "2" or "3").
|
|
21164
|
+
*/
|
|
21165
|
+
version?: pulumi.Input<string>;
|
|
20512
21166
|
}
|
|
20513
21167
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
20514
21168
|
/**
|
|
@@ -20664,7 +21318,7 @@ export declare namespace platform {
|
|
|
20664
21318
|
}
|
|
20665
21319
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorList {
|
|
20666
21320
|
/**
|
|
20667
|
-
* List of key/value pairs to pass as parameters into the template
|
|
21321
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
20668
21322
|
*/
|
|
20669
21323
|
elements: pulumi.Input<pulumi.Input<{
|
|
20670
21324
|
[key: string]: pulumi.Input<string>;
|
|
@@ -20730,7 +21384,7 @@ export declare namespace platform {
|
|
|
20730
21384
|
/**
|
|
20731
21385
|
* 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.
|
|
20732
21386
|
*/
|
|
20733
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
21387
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
20734
21388
|
/**
|
|
20735
21389
|
* Location of the application's manifests or chart.
|
|
20736
21390
|
*/
|
|
@@ -20917,6 +21571,14 @@ export declare namespace platform {
|
|
|
20917
21571
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
20918
21572
|
*/
|
|
20919
21573
|
skipCrds?: pulumi.Input<boolean>;
|
|
21574
|
+
/**
|
|
21575
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
21576
|
+
*/
|
|
21577
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
21578
|
+
/**
|
|
21579
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
21580
|
+
*/
|
|
21581
|
+
skipTests?: pulumi.Input<boolean>;
|
|
20920
21582
|
/**
|
|
20921
21583
|
* List of Helm value files to use when generating a template.
|
|
20922
21584
|
*/
|
|
@@ -20925,6 +21587,16 @@ export declare namespace platform {
|
|
|
20925
21587
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
20926
21588
|
*/
|
|
20927
21589
|
values?: pulumi.Input<string>;
|
|
21590
|
+
/**
|
|
21591
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
21592
|
+
*/
|
|
21593
|
+
valuesObject?: pulumi.Input<{
|
|
21594
|
+
[key: string]: pulumi.Input<string>;
|
|
21595
|
+
}>;
|
|
21596
|
+
/**
|
|
21597
|
+
* Helm version to use for templating (either "2" or "3").
|
|
21598
|
+
*/
|
|
21599
|
+
version?: pulumi.Input<string>;
|
|
20928
21600
|
}
|
|
20929
21601
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
20930
21602
|
/**
|
|
@@ -21248,7 +21920,7 @@ export declare namespace platform {
|
|
|
21248
21920
|
/**
|
|
21249
21921
|
* 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.
|
|
21250
21922
|
*/
|
|
21251
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
21923
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
21252
21924
|
/**
|
|
21253
21925
|
* Location of the application's manifests or chart.
|
|
21254
21926
|
*/
|
|
@@ -21435,6 +22107,14 @@ export declare namespace platform {
|
|
|
21435
22107
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
21436
22108
|
*/
|
|
21437
22109
|
skipCrds?: pulumi.Input<boolean>;
|
|
22110
|
+
/**
|
|
22111
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
22112
|
+
*/
|
|
22113
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
22114
|
+
/**
|
|
22115
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
22116
|
+
*/
|
|
22117
|
+
skipTests?: pulumi.Input<boolean>;
|
|
21438
22118
|
/**
|
|
21439
22119
|
* List of Helm value files to use when generating a template.
|
|
21440
22120
|
*/
|
|
@@ -21443,6 +22123,16 @@ export declare namespace platform {
|
|
|
21443
22123
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
21444
22124
|
*/
|
|
21445
22125
|
values?: pulumi.Input<string>;
|
|
22126
|
+
/**
|
|
22127
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
22128
|
+
*/
|
|
22129
|
+
valuesObject?: pulumi.Input<{
|
|
22130
|
+
[key: string]: pulumi.Input<string>;
|
|
22131
|
+
}>;
|
|
22132
|
+
/**
|
|
22133
|
+
* Helm version to use for templating (either "2" or "3").
|
|
22134
|
+
*/
|
|
22135
|
+
version?: pulumi.Input<string>;
|
|
21446
22136
|
}
|
|
21447
22137
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
21448
22138
|
/**
|
|
@@ -21678,7 +22368,7 @@ export declare namespace platform {
|
|
|
21678
22368
|
/**
|
|
21679
22369
|
* 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.
|
|
21680
22370
|
*/
|
|
21681
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
22371
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
21682
22372
|
/**
|
|
21683
22373
|
* Location of the application's manifests or chart.
|
|
21684
22374
|
*/
|
|
@@ -21865,6 +22555,14 @@ export declare namespace platform {
|
|
|
21865
22555
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
21866
22556
|
*/
|
|
21867
22557
|
skipCrds?: pulumi.Input<boolean>;
|
|
22558
|
+
/**
|
|
22559
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
22560
|
+
*/
|
|
22561
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
22562
|
+
/**
|
|
22563
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
22564
|
+
*/
|
|
22565
|
+
skipTests?: pulumi.Input<boolean>;
|
|
21868
22566
|
/**
|
|
21869
22567
|
* List of Helm value files to use when generating a template.
|
|
21870
22568
|
*/
|
|
@@ -21873,6 +22571,16 @@ export declare namespace platform {
|
|
|
21873
22571
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
21874
22572
|
*/
|
|
21875
22573
|
values?: pulumi.Input<string>;
|
|
22574
|
+
/**
|
|
22575
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
22576
|
+
*/
|
|
22577
|
+
valuesObject?: pulumi.Input<{
|
|
22578
|
+
[key: string]: pulumi.Input<string>;
|
|
22579
|
+
}>;
|
|
22580
|
+
/**
|
|
22581
|
+
* Helm version to use for templating (either "2" or "3").
|
|
22582
|
+
*/
|
|
22583
|
+
version?: pulumi.Input<string>;
|
|
21876
22584
|
}
|
|
21877
22585
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
21878
22586
|
/**
|
|
@@ -22124,7 +22832,7 @@ export declare namespace platform {
|
|
|
22124
22832
|
/**
|
|
22125
22833
|
* 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.
|
|
22126
22834
|
*/
|
|
22127
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
22835
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
22128
22836
|
/**
|
|
22129
22837
|
* Location of the application's manifests or chart.
|
|
22130
22838
|
*/
|
|
@@ -22311,6 +23019,14 @@ export declare namespace platform {
|
|
|
22311
23019
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
22312
23020
|
*/
|
|
22313
23021
|
skipCrds?: pulumi.Input<boolean>;
|
|
23022
|
+
/**
|
|
23023
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
23024
|
+
*/
|
|
23025
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
23026
|
+
/**
|
|
23027
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
23028
|
+
*/
|
|
23029
|
+
skipTests?: pulumi.Input<boolean>;
|
|
22314
23030
|
/**
|
|
22315
23031
|
* List of Helm value files to use when generating a template.
|
|
22316
23032
|
*/
|
|
@@ -22319,6 +23035,16 @@ export declare namespace platform {
|
|
|
22319
23035
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
22320
23036
|
*/
|
|
22321
23037
|
values?: pulumi.Input<string>;
|
|
23038
|
+
/**
|
|
23039
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23040
|
+
*/
|
|
23041
|
+
valuesObject?: pulumi.Input<{
|
|
23042
|
+
[key: string]: pulumi.Input<string>;
|
|
23043
|
+
}>;
|
|
23044
|
+
/**
|
|
23045
|
+
* Helm version to use for templating (either "2" or "3").
|
|
23046
|
+
*/
|
|
23047
|
+
version?: pulumi.Input<string>;
|
|
22322
23048
|
}
|
|
22323
23049
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
22324
23050
|
/**
|
|
@@ -22474,7 +23200,7 @@ export declare namespace platform {
|
|
|
22474
23200
|
}
|
|
22475
23201
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorList {
|
|
22476
23202
|
/**
|
|
22477
|
-
* List of key/value pairs to pass as parameters into the template
|
|
23203
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
22478
23204
|
*/
|
|
22479
23205
|
elements: pulumi.Input<pulumi.Input<{
|
|
22480
23206
|
[key: string]: pulumi.Input<string>;
|
|
@@ -22540,7 +23266,7 @@ export declare namespace platform {
|
|
|
22540
23266
|
/**
|
|
22541
23267
|
* 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.
|
|
22542
23268
|
*/
|
|
22543
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
23269
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
22544
23270
|
/**
|
|
22545
23271
|
* Location of the application's manifests or chart.
|
|
22546
23272
|
*/
|
|
@@ -22727,6 +23453,14 @@ export declare namespace platform {
|
|
|
22727
23453
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
22728
23454
|
*/
|
|
22729
23455
|
skipCrds?: pulumi.Input<boolean>;
|
|
23456
|
+
/**
|
|
23457
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
23458
|
+
*/
|
|
23459
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
23460
|
+
/**
|
|
23461
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
23462
|
+
*/
|
|
23463
|
+
skipTests?: pulumi.Input<boolean>;
|
|
22730
23464
|
/**
|
|
22731
23465
|
* List of Helm value files to use when generating a template.
|
|
22732
23466
|
*/
|
|
@@ -22735,6 +23469,16 @@ export declare namespace platform {
|
|
|
22735
23469
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
22736
23470
|
*/
|
|
22737
23471
|
values?: pulumi.Input<string>;
|
|
23472
|
+
/**
|
|
23473
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23474
|
+
*/
|
|
23475
|
+
valuesObject?: pulumi.Input<{
|
|
23476
|
+
[key: string]: pulumi.Input<string>;
|
|
23477
|
+
}>;
|
|
23478
|
+
/**
|
|
23479
|
+
* Helm version to use for templating (either "2" or "3").
|
|
23480
|
+
*/
|
|
23481
|
+
version?: pulumi.Input<string>;
|
|
22738
23482
|
}
|
|
22739
23483
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
22740
23484
|
/**
|
|
@@ -23118,7 +23862,7 @@ export declare namespace platform {
|
|
|
23118
23862
|
/**
|
|
23119
23863
|
* 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.
|
|
23120
23864
|
*/
|
|
23121
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
23865
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
23122
23866
|
/**
|
|
23123
23867
|
* Location of the application's manifests or chart.
|
|
23124
23868
|
*/
|
|
@@ -23305,6 +24049,14 @@ export declare namespace platform {
|
|
|
23305
24049
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
23306
24050
|
*/
|
|
23307
24051
|
skipCrds?: pulumi.Input<boolean>;
|
|
24052
|
+
/**
|
|
24053
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
24054
|
+
*/
|
|
24055
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
24056
|
+
/**
|
|
24057
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
24058
|
+
*/
|
|
24059
|
+
skipTests?: pulumi.Input<boolean>;
|
|
23308
24060
|
/**
|
|
23309
24061
|
* List of Helm value files to use when generating a template.
|
|
23310
24062
|
*/
|
|
@@ -23313,6 +24065,16 @@ export declare namespace platform {
|
|
|
23313
24065
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23314
24066
|
*/
|
|
23315
24067
|
values?: pulumi.Input<string>;
|
|
24068
|
+
/**
|
|
24069
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
24070
|
+
*/
|
|
24071
|
+
valuesObject?: pulumi.Input<{
|
|
24072
|
+
[key: string]: pulumi.Input<string>;
|
|
24073
|
+
}>;
|
|
24074
|
+
/**
|
|
24075
|
+
* Helm version to use for templating (either "2" or "3").
|
|
24076
|
+
*/
|
|
24077
|
+
version?: pulumi.Input<string>;
|
|
23316
24078
|
}
|
|
23317
24079
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
23318
24080
|
/**
|
|
@@ -23780,7 +24542,7 @@ export declare namespace platform {
|
|
|
23780
24542
|
/**
|
|
23781
24543
|
* 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.
|
|
23782
24544
|
*/
|
|
23783
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
24545
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
23784
24546
|
/**
|
|
23785
24547
|
* Location of the application's manifests or chart.
|
|
23786
24548
|
*/
|
|
@@ -23964,9 +24726,17 @@ export declare namespace platform {
|
|
|
23964
24726
|
*/
|
|
23965
24727
|
releaseName?: pulumi.Input<string>;
|
|
23966
24728
|
/**
|
|
23967
|
-
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
24729
|
+
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
24730
|
+
*/
|
|
24731
|
+
skipCrds?: pulumi.Input<boolean>;
|
|
24732
|
+
/**
|
|
24733
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
24734
|
+
*/
|
|
24735
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
24736
|
+
/**
|
|
24737
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
23968
24738
|
*/
|
|
23969
|
-
|
|
24739
|
+
skipTests?: pulumi.Input<boolean>;
|
|
23970
24740
|
/**
|
|
23971
24741
|
* List of Helm value files to use when generating a template.
|
|
23972
24742
|
*/
|
|
@@ -23975,6 +24745,16 @@ export declare namespace platform {
|
|
|
23975
24745
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
23976
24746
|
*/
|
|
23977
24747
|
values?: pulumi.Input<string>;
|
|
24748
|
+
/**
|
|
24749
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
24750
|
+
*/
|
|
24751
|
+
valuesObject?: pulumi.Input<{
|
|
24752
|
+
[key: string]: pulumi.Input<string>;
|
|
24753
|
+
}>;
|
|
24754
|
+
/**
|
|
24755
|
+
* Helm version to use for templating (either "2" or "3").
|
|
24756
|
+
*/
|
|
24757
|
+
version?: pulumi.Input<string>;
|
|
23978
24758
|
}
|
|
23979
24759
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
23980
24760
|
/**
|
|
@@ -24210,7 +24990,7 @@ export declare namespace platform {
|
|
|
24210
24990
|
/**
|
|
24211
24991
|
* 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.
|
|
24212
24992
|
*/
|
|
24213
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
24993
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
24214
24994
|
/**
|
|
24215
24995
|
* Location of the application's manifests or chart.
|
|
24216
24996
|
*/
|
|
@@ -24397,6 +25177,14 @@ export declare namespace platform {
|
|
|
24397
25177
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
24398
25178
|
*/
|
|
24399
25179
|
skipCrds?: pulumi.Input<boolean>;
|
|
25180
|
+
/**
|
|
25181
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
25182
|
+
*/
|
|
25183
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
25184
|
+
/**
|
|
25185
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
25186
|
+
*/
|
|
25187
|
+
skipTests?: pulumi.Input<boolean>;
|
|
24400
25188
|
/**
|
|
24401
25189
|
* List of Helm value files to use when generating a template.
|
|
24402
25190
|
*/
|
|
@@ -24405,6 +25193,16 @@ export declare namespace platform {
|
|
|
24405
25193
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
24406
25194
|
*/
|
|
24407
25195
|
values?: pulumi.Input<string>;
|
|
25196
|
+
/**
|
|
25197
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
25198
|
+
*/
|
|
25199
|
+
valuesObject?: pulumi.Input<{
|
|
25200
|
+
[key: string]: pulumi.Input<string>;
|
|
25201
|
+
}>;
|
|
25202
|
+
/**
|
|
25203
|
+
* Helm version to use for templating (either "2" or "3").
|
|
25204
|
+
*/
|
|
25205
|
+
version?: pulumi.Input<string>;
|
|
24408
25206
|
}
|
|
24409
25207
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmFileParameter {
|
|
24410
25208
|
/**
|
|
@@ -24732,7 +25530,7 @@ export declare namespace platform {
|
|
|
24732
25530
|
/**
|
|
24733
25531
|
* 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.
|
|
24734
25532
|
*/
|
|
24735
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
25533
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
24736
25534
|
/**
|
|
24737
25535
|
* Location of the application's manifests or chart.
|
|
24738
25536
|
*/
|
|
@@ -24919,6 +25717,14 @@ export declare namespace platform {
|
|
|
24919
25717
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
24920
25718
|
*/
|
|
24921
25719
|
skipCrds?: pulumi.Input<boolean>;
|
|
25720
|
+
/**
|
|
25721
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
25722
|
+
*/
|
|
25723
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
25724
|
+
/**
|
|
25725
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
25726
|
+
*/
|
|
25727
|
+
skipTests?: pulumi.Input<boolean>;
|
|
24922
25728
|
/**
|
|
24923
25729
|
* List of Helm value files to use when generating a template.
|
|
24924
25730
|
*/
|
|
@@ -24927,6 +25733,16 @@ export declare namespace platform {
|
|
|
24927
25733
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
24928
25734
|
*/
|
|
24929
25735
|
values?: pulumi.Input<string>;
|
|
25736
|
+
/**
|
|
25737
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
25738
|
+
*/
|
|
25739
|
+
valuesObject?: pulumi.Input<{
|
|
25740
|
+
[key: string]: pulumi.Input<string>;
|
|
25741
|
+
}>;
|
|
25742
|
+
/**
|
|
25743
|
+
* Helm version to use for templating (either "2" or "3").
|
|
25744
|
+
*/
|
|
25745
|
+
version?: pulumi.Input<string>;
|
|
24930
25746
|
}
|
|
24931
25747
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter {
|
|
24932
25748
|
/**
|
|
@@ -25162,7 +25978,7 @@ export declare namespace platform {
|
|
|
25162
25978
|
/**
|
|
25163
25979
|
* 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.
|
|
25164
25980
|
*/
|
|
25165
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
25981
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
25166
25982
|
/**
|
|
25167
25983
|
* Location of the application's manifests or chart.
|
|
25168
25984
|
*/
|
|
@@ -25349,6 +26165,14 @@ export declare namespace platform {
|
|
|
25349
26165
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
25350
26166
|
*/
|
|
25351
26167
|
skipCrds?: pulumi.Input<boolean>;
|
|
26168
|
+
/**
|
|
26169
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
26170
|
+
*/
|
|
26171
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
26172
|
+
/**
|
|
26173
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
26174
|
+
*/
|
|
26175
|
+
skipTests?: pulumi.Input<boolean>;
|
|
25352
26176
|
/**
|
|
25353
26177
|
* List of Helm value files to use when generating a template.
|
|
25354
26178
|
*/
|
|
@@ -25357,6 +26181,16 @@ export declare namespace platform {
|
|
|
25357
26181
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
25358
26182
|
*/
|
|
25359
26183
|
values?: pulumi.Input<string>;
|
|
26184
|
+
/**
|
|
26185
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
26186
|
+
*/
|
|
26187
|
+
valuesObject?: pulumi.Input<{
|
|
26188
|
+
[key: string]: pulumi.Input<string>;
|
|
26189
|
+
}>;
|
|
26190
|
+
/**
|
|
26191
|
+
* Helm version to use for templating (either "2" or "3").
|
|
26192
|
+
*/
|
|
26193
|
+
version?: pulumi.Input<string>;
|
|
25360
26194
|
}
|
|
25361
26195
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter {
|
|
25362
26196
|
/**
|
|
@@ -25608,7 +26442,7 @@ export declare namespace platform {
|
|
|
25608
26442
|
/**
|
|
25609
26443
|
* 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.
|
|
25610
26444
|
*/
|
|
25611
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
26445
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
25612
26446
|
/**
|
|
25613
26447
|
* Location of the application's manifests or chart.
|
|
25614
26448
|
*/
|
|
@@ -25795,6 +26629,14 @@ export declare namespace platform {
|
|
|
25795
26629
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
25796
26630
|
*/
|
|
25797
26631
|
skipCrds?: pulumi.Input<boolean>;
|
|
26632
|
+
/**
|
|
26633
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
26634
|
+
*/
|
|
26635
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
26636
|
+
/**
|
|
26637
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
26638
|
+
*/
|
|
26639
|
+
skipTests?: pulumi.Input<boolean>;
|
|
25798
26640
|
/**
|
|
25799
26641
|
* List of Helm value files to use when generating a template.
|
|
25800
26642
|
*/
|
|
@@ -25803,6 +26645,16 @@ export declare namespace platform {
|
|
|
25803
26645
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
25804
26646
|
*/
|
|
25805
26647
|
values?: pulumi.Input<string>;
|
|
26648
|
+
/**
|
|
26649
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
26650
|
+
*/
|
|
26651
|
+
valuesObject?: pulumi.Input<{
|
|
26652
|
+
[key: string]: pulumi.Input<string>;
|
|
26653
|
+
}>;
|
|
26654
|
+
/**
|
|
26655
|
+
* Helm version to use for templating (either "2" or "3").
|
|
26656
|
+
*/
|
|
26657
|
+
version?: pulumi.Input<string>;
|
|
25806
26658
|
}
|
|
25807
26659
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter {
|
|
25808
26660
|
/**
|
|
@@ -25958,7 +26810,7 @@ export declare namespace platform {
|
|
|
25958
26810
|
}
|
|
25959
26811
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorList {
|
|
25960
26812
|
/**
|
|
25961
|
-
* List of key/value pairs to pass as parameters into the template
|
|
26813
|
+
* List of key/value pairs to pass as parameters into the template.
|
|
25962
26814
|
*/
|
|
25963
26815
|
elements: pulumi.Input<pulumi.Input<{
|
|
25964
26816
|
[key: string]: pulumi.Input<string>;
|
|
@@ -26024,7 +26876,7 @@ export declare namespace platform {
|
|
|
26024
26876
|
/**
|
|
26025
26877
|
* 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.
|
|
26026
26878
|
*/
|
|
26027
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
26879
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
26028
26880
|
/**
|
|
26029
26881
|
* Location of the application's manifests or chart.
|
|
26030
26882
|
*/
|
|
@@ -26211,6 +27063,14 @@ export declare namespace platform {
|
|
|
26211
27063
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
26212
27064
|
*/
|
|
26213
27065
|
skipCrds?: pulumi.Input<boolean>;
|
|
27066
|
+
/**
|
|
27067
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
27068
|
+
*/
|
|
27069
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
27070
|
+
/**
|
|
27071
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
27072
|
+
*/
|
|
27073
|
+
skipTests?: pulumi.Input<boolean>;
|
|
26214
27074
|
/**
|
|
26215
27075
|
* List of Helm value files to use when generating a template.
|
|
26216
27076
|
*/
|
|
@@ -26219,6 +27079,16 @@ export declare namespace platform {
|
|
|
26219
27079
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
26220
27080
|
*/
|
|
26221
27081
|
values?: pulumi.Input<string>;
|
|
27082
|
+
/**
|
|
27083
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
27084
|
+
*/
|
|
27085
|
+
valuesObject?: pulumi.Input<{
|
|
27086
|
+
[key: string]: pulumi.Input<string>;
|
|
27087
|
+
}>;
|
|
27088
|
+
/**
|
|
27089
|
+
* Helm version to use for templating (either "2" or "3").
|
|
27090
|
+
*/
|
|
27091
|
+
version?: pulumi.Input<string>;
|
|
26222
27092
|
}
|
|
26223
27093
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter {
|
|
26224
27094
|
/**
|
|
@@ -26602,7 +27472,7 @@ export declare namespace platform {
|
|
|
26602
27472
|
/**
|
|
26603
27473
|
* 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.
|
|
26604
27474
|
*/
|
|
26605
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
27475
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
26606
27476
|
/**
|
|
26607
27477
|
* Location of the application's manifests or chart.
|
|
26608
27478
|
*/
|
|
@@ -26789,6 +27659,14 @@ export declare namespace platform {
|
|
|
26789
27659
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
26790
27660
|
*/
|
|
26791
27661
|
skipCrds?: pulumi.Input<boolean>;
|
|
27662
|
+
/**
|
|
27663
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
27664
|
+
*/
|
|
27665
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
27666
|
+
/**
|
|
27667
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
27668
|
+
*/
|
|
27669
|
+
skipTests?: pulumi.Input<boolean>;
|
|
26792
27670
|
/**
|
|
26793
27671
|
* List of Helm value files to use when generating a template.
|
|
26794
27672
|
*/
|
|
@@ -26797,6 +27675,16 @@ export declare namespace platform {
|
|
|
26797
27675
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
26798
27676
|
*/
|
|
26799
27677
|
values?: pulumi.Input<string>;
|
|
27678
|
+
/**
|
|
27679
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
27680
|
+
*/
|
|
27681
|
+
valuesObject?: pulumi.Input<{
|
|
27682
|
+
[key: string]: pulumi.Input<string>;
|
|
27683
|
+
}>;
|
|
27684
|
+
/**
|
|
27685
|
+
* Helm version to use for templating (either "2" or "3").
|
|
27686
|
+
*/
|
|
27687
|
+
version?: pulumi.Input<string>;
|
|
26800
27688
|
}
|
|
26801
27689
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
26802
27690
|
/**
|
|
@@ -27264,7 +28152,7 @@ export declare namespace platform {
|
|
|
27264
28152
|
/**
|
|
27265
28153
|
* 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.
|
|
27266
28154
|
*/
|
|
27267
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
28155
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
27268
28156
|
/**
|
|
27269
28157
|
* Location of the application's manifests or chart.
|
|
27270
28158
|
*/
|
|
@@ -27451,6 +28339,14 @@ export declare namespace platform {
|
|
|
27451
28339
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
27452
28340
|
*/
|
|
27453
28341
|
skipCrds?: pulumi.Input<boolean>;
|
|
28342
|
+
/**
|
|
28343
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
28344
|
+
*/
|
|
28345
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
28346
|
+
/**
|
|
28347
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
28348
|
+
*/
|
|
28349
|
+
skipTests?: pulumi.Input<boolean>;
|
|
27454
28350
|
/**
|
|
27455
28351
|
* List of Helm value files to use when generating a template.
|
|
27456
28352
|
*/
|
|
@@ -27459,6 +28355,16 @@ export declare namespace platform {
|
|
|
27459
28355
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
27460
28356
|
*/
|
|
27461
28357
|
values?: pulumi.Input<string>;
|
|
28358
|
+
/**
|
|
28359
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
28360
|
+
*/
|
|
28361
|
+
valuesObject?: pulumi.Input<{
|
|
28362
|
+
[key: string]: pulumi.Input<string>;
|
|
28363
|
+
}>;
|
|
28364
|
+
/**
|
|
28365
|
+
* Helm version to use for templating (either "2" or "3").
|
|
28366
|
+
*/
|
|
28367
|
+
version?: pulumi.Input<string>;
|
|
27462
28368
|
}
|
|
27463
28369
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
27464
28370
|
/**
|
|
@@ -27694,7 +28600,7 @@ export declare namespace platform {
|
|
|
27694
28600
|
/**
|
|
27695
28601
|
* 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.
|
|
27696
28602
|
*/
|
|
27697
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
28603
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
27698
28604
|
/**
|
|
27699
28605
|
* Location of the application's manifests or chart.
|
|
27700
28606
|
*/
|
|
@@ -27881,6 +28787,14 @@ export declare namespace platform {
|
|
|
27881
28787
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
27882
28788
|
*/
|
|
27883
28789
|
skipCrds?: pulumi.Input<boolean>;
|
|
28790
|
+
/**
|
|
28791
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
28792
|
+
*/
|
|
28793
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
28794
|
+
/**
|
|
28795
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
28796
|
+
*/
|
|
28797
|
+
skipTests?: pulumi.Input<boolean>;
|
|
27884
28798
|
/**
|
|
27885
28799
|
* List of Helm value files to use when generating a template.
|
|
27886
28800
|
*/
|
|
@@ -27889,6 +28803,16 @@ export declare namespace platform {
|
|
|
27889
28803
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
27890
28804
|
*/
|
|
27891
28805
|
values?: pulumi.Input<string>;
|
|
28806
|
+
/**
|
|
28807
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
28808
|
+
*/
|
|
28809
|
+
valuesObject?: pulumi.Input<{
|
|
28810
|
+
[key: string]: pulumi.Input<string>;
|
|
28811
|
+
}>;
|
|
28812
|
+
/**
|
|
28813
|
+
* Helm version to use for templating (either "2" or "3").
|
|
28814
|
+
*/
|
|
28815
|
+
version?: pulumi.Input<string>;
|
|
27892
28816
|
}
|
|
27893
28817
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmFileParameter {
|
|
27894
28818
|
/**
|
|
@@ -28272,7 +29196,7 @@ export declare namespace platform {
|
|
|
28272
29196
|
/**
|
|
28273
29197
|
* 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.
|
|
28274
29198
|
*/
|
|
28275
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
29199
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
28276
29200
|
/**
|
|
28277
29201
|
* Location of the application's manifests or chart.
|
|
28278
29202
|
*/
|
|
@@ -28459,6 +29383,14 @@ export declare namespace platform {
|
|
|
28459
29383
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
28460
29384
|
*/
|
|
28461
29385
|
skipCrds?: pulumi.Input<boolean>;
|
|
29386
|
+
/**
|
|
29387
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
29388
|
+
*/
|
|
29389
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
29390
|
+
/**
|
|
29391
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
29392
|
+
*/
|
|
29393
|
+
skipTests?: pulumi.Input<boolean>;
|
|
28462
29394
|
/**
|
|
28463
29395
|
* List of Helm value files to use when generating a template.
|
|
28464
29396
|
*/
|
|
@@ -28467,6 +29399,16 @@ export declare namespace platform {
|
|
|
28467
29399
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
28468
29400
|
*/
|
|
28469
29401
|
values?: pulumi.Input<string>;
|
|
29402
|
+
/**
|
|
29403
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
29404
|
+
*/
|
|
29405
|
+
valuesObject?: pulumi.Input<{
|
|
29406
|
+
[key: string]: pulumi.Input<string>;
|
|
29407
|
+
}>;
|
|
29408
|
+
/**
|
|
29409
|
+
* Helm version to use for templating (either "2" or "3").
|
|
29410
|
+
*/
|
|
29411
|
+
version?: pulumi.Input<string>;
|
|
28470
29412
|
}
|
|
28471
29413
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
28472
29414
|
/**
|
|
@@ -28934,7 +29876,7 @@ export declare namespace platform {
|
|
|
28934
29876
|
/**
|
|
28935
29877
|
* 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.
|
|
28936
29878
|
*/
|
|
28937
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
29879
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
28938
29880
|
/**
|
|
28939
29881
|
* Location of the application's manifests or chart.
|
|
28940
29882
|
*/
|
|
@@ -29121,6 +30063,14 @@ export declare namespace platform {
|
|
|
29121
30063
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
29122
30064
|
*/
|
|
29123
30065
|
skipCrds?: pulumi.Input<boolean>;
|
|
30066
|
+
/**
|
|
30067
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
30068
|
+
*/
|
|
30069
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
30070
|
+
/**
|
|
30071
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
30072
|
+
*/
|
|
30073
|
+
skipTests?: pulumi.Input<boolean>;
|
|
29124
30074
|
/**
|
|
29125
30075
|
* List of Helm value files to use when generating a template.
|
|
29126
30076
|
*/
|
|
@@ -29129,6 +30079,16 @@ export declare namespace platform {
|
|
|
29129
30079
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
29130
30080
|
*/
|
|
29131
30081
|
values?: pulumi.Input<string>;
|
|
30082
|
+
/**
|
|
30083
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
30084
|
+
*/
|
|
30085
|
+
valuesObject?: pulumi.Input<{
|
|
30086
|
+
[key: string]: pulumi.Input<string>;
|
|
30087
|
+
}>;
|
|
30088
|
+
/**
|
|
30089
|
+
* Helm version to use for templating (either "2" or "3").
|
|
30090
|
+
*/
|
|
30091
|
+
version?: pulumi.Input<string>;
|
|
29132
30092
|
}
|
|
29133
30093
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
29134
30094
|
/**
|
|
@@ -29364,7 +30324,7 @@ export declare namespace platform {
|
|
|
29364
30324
|
/**
|
|
29365
30325
|
* 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.
|
|
29366
30326
|
*/
|
|
29367
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
30327
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
29368
30328
|
/**
|
|
29369
30329
|
* Location of the application's manifests or chart.
|
|
29370
30330
|
*/
|
|
@@ -29551,6 +30511,14 @@ export declare namespace platform {
|
|
|
29551
30511
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
29552
30512
|
*/
|
|
29553
30513
|
skipCrds?: pulumi.Input<boolean>;
|
|
30514
|
+
/**
|
|
30515
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
30516
|
+
*/
|
|
30517
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
30518
|
+
/**
|
|
30519
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
30520
|
+
*/
|
|
30521
|
+
skipTests?: pulumi.Input<boolean>;
|
|
29554
30522
|
/**
|
|
29555
30523
|
* List of Helm value files to use when generating a template.
|
|
29556
30524
|
*/
|
|
@@ -29559,6 +30527,16 @@ export declare namespace platform {
|
|
|
29559
30527
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
29560
30528
|
*/
|
|
29561
30529
|
values?: pulumi.Input<string>;
|
|
30530
|
+
/**
|
|
30531
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
30532
|
+
*/
|
|
30533
|
+
valuesObject?: pulumi.Input<{
|
|
30534
|
+
[key: string]: pulumi.Input<string>;
|
|
30535
|
+
}>;
|
|
30536
|
+
/**
|
|
30537
|
+
* Helm version to use for templating (either "2" or "3").
|
|
30538
|
+
*/
|
|
30539
|
+
version?: pulumi.Input<string>;
|
|
29562
30540
|
}
|
|
29563
30541
|
interface GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceHelmFileParameter {
|
|
29564
30542
|
/**
|
|
@@ -29942,7 +30920,7 @@ export declare namespace platform {
|
|
|
29942
30920
|
/**
|
|
29943
30921
|
* 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.
|
|
29944
30922
|
*/
|
|
29945
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
30923
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
29946
30924
|
/**
|
|
29947
30925
|
* Location of the application's manifests or chart.
|
|
29948
30926
|
*/
|
|
@@ -30129,6 +31107,14 @@ export declare namespace platform {
|
|
|
30129
31107
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
30130
31108
|
*/
|
|
30131
31109
|
skipCrds?: pulumi.Input<boolean>;
|
|
31110
|
+
/**
|
|
31111
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
31112
|
+
*/
|
|
31113
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
31114
|
+
/**
|
|
31115
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
31116
|
+
*/
|
|
31117
|
+
skipTests?: pulumi.Input<boolean>;
|
|
30132
31118
|
/**
|
|
30133
31119
|
* List of Helm value files to use when generating a template.
|
|
30134
31120
|
*/
|
|
@@ -30137,6 +31123,16 @@ export declare namespace platform {
|
|
|
30137
31123
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
30138
31124
|
*/
|
|
30139
31125
|
values?: pulumi.Input<string>;
|
|
31126
|
+
/**
|
|
31127
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
31128
|
+
*/
|
|
31129
|
+
valuesObject?: pulumi.Input<{
|
|
31130
|
+
[key: string]: pulumi.Input<string>;
|
|
31131
|
+
}>;
|
|
31132
|
+
/**
|
|
31133
|
+
* Helm version to use for templating (either "2" or "3").
|
|
31134
|
+
*/
|
|
31135
|
+
version?: pulumi.Input<string>;
|
|
30140
31136
|
}
|
|
30141
31137
|
interface GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSourceHelmFileParameter {
|
|
30142
31138
|
/**
|
|
@@ -30604,7 +31600,7 @@ export declare namespace platform {
|
|
|
30604
31600
|
/**
|
|
30605
31601
|
* 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.
|
|
30606
31602
|
*/
|
|
30607
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
31603
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
30608
31604
|
/**
|
|
30609
31605
|
* Location of the application's manifests or chart.
|
|
30610
31606
|
*/
|
|
@@ -30791,6 +31787,14 @@ export declare namespace platform {
|
|
|
30791
31787
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
30792
31788
|
*/
|
|
30793
31789
|
skipCrds?: pulumi.Input<boolean>;
|
|
31790
|
+
/**
|
|
31791
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
31792
|
+
*/
|
|
31793
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
31794
|
+
/**
|
|
31795
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
31796
|
+
*/
|
|
31797
|
+
skipTests?: pulumi.Input<boolean>;
|
|
30794
31798
|
/**
|
|
30795
31799
|
* List of Helm value files to use when generating a template.
|
|
30796
31800
|
*/
|
|
@@ -30799,6 +31803,16 @@ export declare namespace platform {
|
|
|
30799
31803
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
30800
31804
|
*/
|
|
30801
31805
|
values?: pulumi.Input<string>;
|
|
31806
|
+
/**
|
|
31807
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
31808
|
+
*/
|
|
31809
|
+
valuesObject?: pulumi.Input<{
|
|
31810
|
+
[key: string]: pulumi.Input<string>;
|
|
31811
|
+
}>;
|
|
31812
|
+
/**
|
|
31813
|
+
* Helm version to use for templating (either "2" or "3").
|
|
31814
|
+
*/
|
|
31815
|
+
version?: pulumi.Input<string>;
|
|
30802
31816
|
}
|
|
30803
31817
|
interface GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSourceHelmFileParameter {
|
|
30804
31818
|
/**
|
|
@@ -31098,7 +32112,7 @@ export declare namespace platform {
|
|
|
31098
32112
|
/**
|
|
31099
32113
|
* 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.
|
|
31100
32114
|
*/
|
|
31101
|
-
revisionHistoryLimit?: pulumi.Input<
|
|
32115
|
+
revisionHistoryLimit?: pulumi.Input<string>;
|
|
31102
32116
|
/**
|
|
31103
32117
|
* Location of the application's manifests or chart.
|
|
31104
32118
|
*/
|
|
@@ -31285,6 +32299,14 @@ export declare namespace platform {
|
|
|
31285
32299
|
* Whether to skip custom resource definition installation step (Helm's [--skip-crds](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/)).
|
|
31286
32300
|
*/
|
|
31287
32301
|
skipCrds?: pulumi.Input<boolean>;
|
|
32302
|
+
/**
|
|
32303
|
+
* Indicates if to skip schema validation during helm template. Corresponds to helm --skip-schema-validation
|
|
32304
|
+
*/
|
|
32305
|
+
skipSchemaValidation?: pulumi.Input<boolean>;
|
|
32306
|
+
/**
|
|
32307
|
+
* Indicates if to skip tests during helm template. Corresponds to helm --skip-tests
|
|
32308
|
+
*/
|
|
32309
|
+
skipTests?: pulumi.Input<boolean>;
|
|
31288
32310
|
/**
|
|
31289
32311
|
* List of Helm value files to use when generating a template.
|
|
31290
32312
|
*/
|
|
@@ -31293,6 +32315,16 @@ export declare namespace platform {
|
|
|
31293
32315
|
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
31294
32316
|
*/
|
|
31295
32317
|
values?: pulumi.Input<string>;
|
|
32318
|
+
/**
|
|
32319
|
+
* Helm values to be passed to 'helm template', typically defined as a block.
|
|
32320
|
+
*/
|
|
32321
|
+
valuesObject?: pulumi.Input<{
|
|
32322
|
+
[key: string]: pulumi.Input<string>;
|
|
32323
|
+
}>;
|
|
32324
|
+
/**
|
|
32325
|
+
* Helm version to use for templating (either "2" or "3").
|
|
32326
|
+
*/
|
|
32327
|
+
version?: pulumi.Input<string>;
|
|
31296
32328
|
}
|
|
31297
32329
|
interface GitopsApplicationsetApplicationsetSpecTemplateSpecSourceHelmFileParameter {
|
|
31298
32330
|
/**
|
|
@@ -31509,6 +32541,40 @@ export declare namespace platform {
|
|
|
31509
32541
|
*/
|
|
31510
32542
|
usernameRef?: pulumi.Input<string>;
|
|
31511
32543
|
}
|
|
32544
|
+
interface InfraModuleTestingTestingMetadata {
|
|
32545
|
+
/**
|
|
32546
|
+
* Account is the internal customer account ID
|
|
32547
|
+
*/
|
|
32548
|
+
account?: pulumi.Input<string>;
|
|
32549
|
+
/**
|
|
32550
|
+
* Organization identifier
|
|
32551
|
+
*/
|
|
32552
|
+
org?: pulumi.Input<string>;
|
|
32553
|
+
/**
|
|
32554
|
+
* Pipelines where the testing is enabled
|
|
32555
|
+
*/
|
|
32556
|
+
pipelines?: pulumi.Input<pulumi.Input<string>[]>;
|
|
32557
|
+
/**
|
|
32558
|
+
* Project identifier
|
|
32559
|
+
*/
|
|
32560
|
+
project?: pulumi.Input<string>;
|
|
32561
|
+
/**
|
|
32562
|
+
* Provider connector for testing purposes
|
|
32563
|
+
*/
|
|
32564
|
+
providerConnector?: pulumi.Input<string>;
|
|
32565
|
+
/**
|
|
32566
|
+
* Provisioner type for testing purposes
|
|
32567
|
+
*/
|
|
32568
|
+
provisionerType?: pulumi.Input<string>;
|
|
32569
|
+
/**
|
|
32570
|
+
* Provisioner version for testing purposes
|
|
32571
|
+
*/
|
|
32572
|
+
provisionerVersion?: pulumi.Input<string>;
|
|
32573
|
+
/**
|
|
32574
|
+
* Release pipeline
|
|
32575
|
+
*/
|
|
32576
|
+
releasePipeline?: pulumi.Input<string>;
|
|
32577
|
+
}
|
|
31512
32578
|
interface InfraVariableSetConnector {
|
|
31513
32579
|
/**
|
|
31514
32580
|
* Connector Ref is the reference to the connector
|
|
@@ -32209,6 +33275,9 @@ export declare namespace platform {
|
|
|
32209
33275
|
interface PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig {
|
|
32210
33276
|
entityIdentifiers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
32211
33277
|
notificationEntity: pulumi.Input<string>;
|
|
33278
|
+
/**
|
|
33279
|
+
* The pipeline event that triggers the notification. Supported values: `PIPELINE_START`, `PIPELINE_SUCCESS`, `PIPELINE_FAILED`, `STAGE_START`, `STAGE_SUCCESS`, `STAGE_FAILED`.
|
|
33280
|
+
*/
|
|
32212
33281
|
notificationEvent: pulumi.Input<string>;
|
|
32213
33282
|
notificationEventDatas?: pulumi.Input<pulumi.Input<inputs.platform.PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData>[]>;
|
|
32214
33283
|
}
|