@cdktn/provider-helm 14.0.3 → 14.1.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/.jsii +172 -172
- package/README.md +3 -3
- package/lib/data-helm-template/index.d.ts +62 -62
- package/lib/data-helm-template/index.js +16 -16
- package/lib/provider/index.d.ts +39 -39
- package/lib/provider/index.js +6 -6
- package/lib/release/index.d.ts +64 -64
- package/lib/release/index.js +17 -17
- package/package.json +4 -4
package/lib/release/index.d.ts
CHANGED
|
@@ -8,263 +8,263 @@ export interface ReleaseConfig extends cdktn.TerraformMetaArguments {
|
|
|
8
8
|
/**
|
|
9
9
|
* If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used
|
|
10
10
|
*
|
|
11
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
11
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#atomic Release#atomic}
|
|
12
12
|
*/
|
|
13
13
|
readonly atomic?: boolean | cdktn.IResolvable;
|
|
14
14
|
/**
|
|
15
15
|
* Chart name to be installed. A path may be used
|
|
16
16
|
*
|
|
17
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
17
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#chart Release#chart}
|
|
18
18
|
*/
|
|
19
19
|
readonly chart: string;
|
|
20
20
|
/**
|
|
21
21
|
* Allow deletion of new resources created in this upgrade when upgrade fails
|
|
22
22
|
*
|
|
23
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
23
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#cleanup_on_fail Release#cleanup_on_fail}
|
|
24
24
|
*/
|
|
25
25
|
readonly cleanupOnFail?: boolean | cdktn.IResolvable;
|
|
26
26
|
/**
|
|
27
27
|
* Create the namespace if it does not exist
|
|
28
28
|
*
|
|
29
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
29
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#create_namespace Release#create_namespace}
|
|
30
30
|
*/
|
|
31
31
|
readonly createNamespace?: boolean | cdktn.IResolvable;
|
|
32
32
|
/**
|
|
33
33
|
* Run helm dependency update before installing the chart
|
|
34
34
|
*
|
|
35
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
35
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#dependency_update Release#dependency_update}
|
|
36
36
|
*/
|
|
37
37
|
readonly dependencyUpdate?: boolean | cdktn.IResolvable;
|
|
38
38
|
/**
|
|
39
39
|
* Add a custom description
|
|
40
40
|
*
|
|
41
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
41
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#description Release#description}
|
|
42
42
|
*/
|
|
43
43
|
readonly description?: string;
|
|
44
44
|
/**
|
|
45
45
|
* Use chart development versions, too. Equivalent to version '>0.0.0-0'. If 'version' is set, this is ignored
|
|
46
46
|
*
|
|
47
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
47
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#devel Release#devel}
|
|
48
48
|
*/
|
|
49
49
|
readonly devel?: boolean | cdktn.IResolvable;
|
|
50
50
|
/**
|
|
51
51
|
* Prevent CRD hooks from running, but run other hooks. See helm install --no-crd-hook
|
|
52
52
|
*
|
|
53
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
53
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#disable_crd_hooks Release#disable_crd_hooks}
|
|
54
54
|
*/
|
|
55
55
|
readonly disableCrdHooks?: boolean | cdktn.IResolvable;
|
|
56
56
|
/**
|
|
57
57
|
* If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema
|
|
58
58
|
*
|
|
59
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
59
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#disable_openapi_validation Release#disable_openapi_validation}
|
|
60
60
|
*/
|
|
61
61
|
readonly disableOpenapiValidation?: boolean | cdktn.IResolvable;
|
|
62
62
|
/**
|
|
63
63
|
* Prevent hooks from running
|
|
64
64
|
*
|
|
65
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
65
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#disable_webhooks Release#disable_webhooks}
|
|
66
66
|
*/
|
|
67
67
|
readonly disableWebhooks?: boolean | cdktn.IResolvable;
|
|
68
68
|
/**
|
|
69
69
|
* Force resource update through delete/recreate if needed.
|
|
70
70
|
*
|
|
71
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
71
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#force_update Release#force_update}
|
|
72
72
|
*/
|
|
73
73
|
readonly forceUpdate?: boolean | cdktn.IResolvable;
|
|
74
74
|
/**
|
|
75
75
|
* Location of public keys used for verification, Used only if 'verify is true'
|
|
76
76
|
*
|
|
77
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
77
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#keyring Release#keyring}
|
|
78
78
|
*/
|
|
79
79
|
readonly keyring?: string;
|
|
80
80
|
/**
|
|
81
81
|
* Run helm lint when planning
|
|
82
82
|
*
|
|
83
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
83
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#lint Release#lint}
|
|
84
84
|
*/
|
|
85
85
|
readonly lint?: boolean | cdktn.IResolvable;
|
|
86
86
|
/**
|
|
87
87
|
* Limit the maximum number of revisions saved per release. Use 0 for no limit
|
|
88
88
|
*
|
|
89
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
89
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#max_history Release#max_history}
|
|
90
90
|
*/
|
|
91
91
|
readonly maxHistory?: number;
|
|
92
92
|
/**
|
|
93
93
|
* Release name. The length must not be longer than 53 characters
|
|
94
94
|
*
|
|
95
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
95
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#name Release#name}
|
|
96
96
|
*/
|
|
97
97
|
readonly name: string;
|
|
98
98
|
/**
|
|
99
99
|
* Namespace to install the release into
|
|
100
100
|
*
|
|
101
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
101
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#namespace Release#namespace}
|
|
102
102
|
*/
|
|
103
103
|
readonly namespace?: string;
|
|
104
104
|
/**
|
|
105
105
|
* Pass credentials to all domains
|
|
106
106
|
*
|
|
107
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
107
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#pass_credentials Release#pass_credentials}
|
|
108
108
|
*/
|
|
109
109
|
readonly passCredentials?: boolean | cdktn.IResolvable;
|
|
110
110
|
/**
|
|
111
111
|
* Postrender command config
|
|
112
112
|
*
|
|
113
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
113
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#postrender Release#postrender}
|
|
114
114
|
*/
|
|
115
115
|
readonly postrender?: ReleasePostrender;
|
|
116
116
|
/**
|
|
117
117
|
* Perform pods restart during upgrade/rollback
|
|
118
118
|
*
|
|
119
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
119
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#recreate_pods Release#recreate_pods}
|
|
120
120
|
*/
|
|
121
121
|
readonly recreatePods?: boolean | cdktn.IResolvable;
|
|
122
122
|
/**
|
|
123
123
|
* If set, render subchart notes along with the parent
|
|
124
124
|
*
|
|
125
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
125
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#render_subchart_notes Release#render_subchart_notes}
|
|
126
126
|
*/
|
|
127
127
|
readonly renderSubchartNotes?: boolean | cdktn.IResolvable;
|
|
128
128
|
/**
|
|
129
129
|
* Re-use the given name, even if that name is already used. This is unsafe in production
|
|
130
130
|
*
|
|
131
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
131
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#replace Release#replace}
|
|
132
132
|
*/
|
|
133
133
|
readonly replace?: boolean | cdktn.IResolvable;
|
|
134
134
|
/**
|
|
135
135
|
* Repository where to locate the requested chart. If it is a URL, the chart is installed without installing the repository
|
|
136
136
|
*
|
|
137
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
137
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#repository Release#repository}
|
|
138
138
|
*/
|
|
139
139
|
readonly repository?: string;
|
|
140
140
|
/**
|
|
141
141
|
* The Repositories CA file
|
|
142
142
|
*
|
|
143
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
143
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#repository_ca_file Release#repository_ca_file}
|
|
144
144
|
*/
|
|
145
145
|
readonly repositoryCaFile?: string;
|
|
146
146
|
/**
|
|
147
147
|
* The repositories cert file
|
|
148
148
|
*
|
|
149
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
149
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#repository_cert_file Release#repository_cert_file}
|
|
150
150
|
*/
|
|
151
151
|
readonly repositoryCertFile?: string;
|
|
152
152
|
/**
|
|
153
153
|
* The repositories cert key file
|
|
154
154
|
*
|
|
155
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
155
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#repository_key_file Release#repository_key_file}
|
|
156
156
|
*/
|
|
157
157
|
readonly repositoryKeyFile?: string;
|
|
158
158
|
/**
|
|
159
159
|
* Password for HTTP basic authentication
|
|
160
160
|
*
|
|
161
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
161
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#repository_password Release#repository_password}
|
|
162
162
|
*/
|
|
163
163
|
readonly repositoryPassword?: string;
|
|
164
164
|
/**
|
|
165
165
|
* Username for HTTP basic authentication
|
|
166
166
|
*
|
|
167
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
167
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#repository_username Release#repository_username}
|
|
168
168
|
*/
|
|
169
169
|
readonly repositoryUsername?: string;
|
|
170
170
|
/**
|
|
171
171
|
* When upgrading, reset the values to the ones built into the chart
|
|
172
172
|
*
|
|
173
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
173
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#reset_values Release#reset_values}
|
|
174
174
|
*/
|
|
175
175
|
readonly resetValues?: boolean | cdktn.IResolvable;
|
|
176
176
|
/**
|
|
177
177
|
* When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored
|
|
178
178
|
*
|
|
179
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
179
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#reuse_values Release#reuse_values}
|
|
180
180
|
*/
|
|
181
181
|
readonly reuseValues?: boolean | cdktn.IResolvable;
|
|
182
182
|
/**
|
|
183
183
|
* Custom values to be merged with the values
|
|
184
184
|
*
|
|
185
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
185
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#set Release#set}
|
|
186
186
|
*/
|
|
187
187
|
readonly set?: ReleaseSet[] | cdktn.IResolvable;
|
|
188
188
|
/**
|
|
189
189
|
* Custom sensitive values to be merged with the values
|
|
190
190
|
*
|
|
191
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
191
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#set_list Release#set_list}
|
|
192
192
|
*/
|
|
193
193
|
readonly setList?: ReleaseSetListStruct[] | cdktn.IResolvable;
|
|
194
194
|
/**
|
|
195
195
|
* Custom sensitive values to be merged with the values
|
|
196
196
|
*
|
|
197
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
197
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#set_sensitive Release#set_sensitive}
|
|
198
198
|
*/
|
|
199
199
|
readonly setSensitive?: ReleaseSetSensitive[] | cdktn.IResolvable;
|
|
200
200
|
/**
|
|
201
201
|
* Custom values to be merged with the values
|
|
202
202
|
*
|
|
203
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
203
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#set_wo Release#set_wo}
|
|
204
204
|
*/
|
|
205
205
|
readonly setWo?: ReleaseSetWo[] | cdktn.IResolvable;
|
|
206
206
|
/**
|
|
207
207
|
* The current revision of the write-only "set_wo" attribute. Incrementing this integer value will cause Terraform to update the write-only value.
|
|
208
208
|
*
|
|
209
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
209
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#set_wo_revision Release#set_wo_revision}
|
|
210
210
|
*/
|
|
211
211
|
readonly setWoRevision?: number;
|
|
212
212
|
/**
|
|
213
213
|
* If set, no CRDs will be installed. By default, CRDs are installed if not already present
|
|
214
214
|
*
|
|
215
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
215
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#skip_crds Release#skip_crds}
|
|
216
216
|
*/
|
|
217
217
|
readonly skipCrds?: boolean | cdktn.IResolvable;
|
|
218
218
|
/**
|
|
219
219
|
* If set, Helm will take ownership of resources not already annotated by this release. Useful for migrations or recovery.
|
|
220
220
|
*
|
|
221
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
221
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#take_ownership Release#take_ownership}
|
|
222
222
|
*/
|
|
223
223
|
readonly takeOwnership?: boolean | cdktn.IResolvable;
|
|
224
224
|
/**
|
|
225
225
|
* Time in seconds to wait for any individual kubernetes operation
|
|
226
226
|
*
|
|
227
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
227
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#timeout Release#timeout}
|
|
228
228
|
*/
|
|
229
229
|
readonly timeout?: number;
|
|
230
230
|
/**
|
|
231
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
231
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#timeouts Release#timeouts}
|
|
232
232
|
*/
|
|
233
233
|
readonly timeouts?: ReleaseTimeouts;
|
|
234
234
|
/**
|
|
235
235
|
* If true, the provider will install the release at the specified version even if a release not controlled by the provider is present. This is equivalent to running 'helm upgrade --install'. WARNING: this may not be suitable for production use -- see the 'Upgrade Mode' note in the provider documentation. Defaults to `false`.
|
|
236
236
|
*
|
|
237
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
237
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#upgrade_install Release#upgrade_install}
|
|
238
238
|
*/
|
|
239
239
|
readonly upgradeInstall?: boolean | cdktn.IResolvable;
|
|
240
240
|
/**
|
|
241
241
|
* List of values in raw YAML format to pass to helm
|
|
242
242
|
*
|
|
243
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
243
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#values Release#values}
|
|
244
244
|
*/
|
|
245
245
|
readonly values?: string[];
|
|
246
246
|
/**
|
|
247
247
|
* Verify the package before installing it.
|
|
248
248
|
*
|
|
249
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
249
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#verify Release#verify}
|
|
250
250
|
*/
|
|
251
251
|
readonly verify?: boolean | cdktn.IResolvable;
|
|
252
252
|
/**
|
|
253
253
|
* Specify the exact chart version to install. If this is not specified, the latest version is installed
|
|
254
254
|
*
|
|
255
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
255
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#version Release#version}
|
|
256
256
|
*/
|
|
257
257
|
readonly version?: string;
|
|
258
258
|
/**
|
|
259
259
|
* Will wait until all resources are in a ready state before marking the release as successful.
|
|
260
260
|
*
|
|
261
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
261
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#wait Release#wait}
|
|
262
262
|
*/
|
|
263
263
|
readonly wait?: boolean | cdktn.IResolvable;
|
|
264
264
|
/**
|
|
265
265
|
* If wait is enabled, will wait until all Jobs have been completed before marking the release as successful.
|
|
266
266
|
*
|
|
267
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
267
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#wait_for_jobs Release#wait_for_jobs}
|
|
268
268
|
*/
|
|
269
269
|
readonly waitForJobs?: boolean | cdktn.IResolvable;
|
|
270
270
|
}
|
|
@@ -296,13 +296,13 @@ export interface ReleasePostrender {
|
|
|
296
296
|
/**
|
|
297
297
|
* An argument to the post-renderer (can specify multiple)
|
|
298
298
|
*
|
|
299
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
299
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#args Release#args}
|
|
300
300
|
*/
|
|
301
301
|
readonly args?: string[];
|
|
302
302
|
/**
|
|
303
303
|
* The common binary path
|
|
304
304
|
*
|
|
305
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
305
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#binary_path Release#binary_path}
|
|
306
306
|
*/
|
|
307
307
|
readonly binaryPath: string;
|
|
308
308
|
}
|
|
@@ -330,15 +330,15 @@ export declare class ReleasePostrenderOutputReference extends cdktn.ComplexObjec
|
|
|
330
330
|
}
|
|
331
331
|
export interface ReleaseSet {
|
|
332
332
|
/**
|
|
333
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
333
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#name Release#name}
|
|
334
334
|
*/
|
|
335
335
|
readonly name: string;
|
|
336
336
|
/**
|
|
337
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
337
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#type Release#type}
|
|
338
338
|
*/
|
|
339
339
|
readonly type?: string;
|
|
340
340
|
/**
|
|
341
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
341
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#value Release#value}
|
|
342
342
|
*/
|
|
343
343
|
readonly value?: string;
|
|
344
344
|
}
|
|
@@ -386,11 +386,11 @@ export declare class ReleaseSetList extends cdktn.ComplexList {
|
|
|
386
386
|
}
|
|
387
387
|
export interface ReleaseSetListStruct {
|
|
388
388
|
/**
|
|
389
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
389
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#name Release#name}
|
|
390
390
|
*/
|
|
391
391
|
readonly name: string;
|
|
392
392
|
/**
|
|
393
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
393
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#value Release#value}
|
|
394
394
|
*/
|
|
395
395
|
readonly value: string[];
|
|
396
396
|
}
|
|
@@ -432,15 +432,15 @@ export declare class ReleaseSetListStructList extends cdktn.ComplexList {
|
|
|
432
432
|
}
|
|
433
433
|
export interface ReleaseSetSensitive {
|
|
434
434
|
/**
|
|
435
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
435
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#name Release#name}
|
|
436
436
|
*/
|
|
437
437
|
readonly name: string;
|
|
438
438
|
/**
|
|
439
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
439
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#type Release#type}
|
|
440
440
|
*/
|
|
441
441
|
readonly type?: string;
|
|
442
442
|
/**
|
|
443
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
443
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#value Release#value}
|
|
444
444
|
*/
|
|
445
445
|
readonly value: string;
|
|
446
446
|
}
|
|
@@ -487,15 +487,15 @@ export declare class ReleaseSetSensitiveList extends cdktn.ComplexList {
|
|
|
487
487
|
}
|
|
488
488
|
export interface ReleaseSetWo {
|
|
489
489
|
/**
|
|
490
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
490
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#name Release#name}
|
|
491
491
|
*/
|
|
492
492
|
readonly name: string;
|
|
493
493
|
/**
|
|
494
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
494
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#type Release#type}
|
|
495
495
|
*/
|
|
496
496
|
readonly type?: string;
|
|
497
497
|
/**
|
|
498
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
498
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#value Release#value}
|
|
499
499
|
*/
|
|
500
500
|
readonly value: string;
|
|
501
501
|
}
|
|
@@ -544,25 +544,25 @@ export interface ReleaseTimeouts {
|
|
|
544
544
|
/**
|
|
545
545
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
546
546
|
*
|
|
547
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
547
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#create Release#create}
|
|
548
548
|
*/
|
|
549
549
|
readonly create?: string;
|
|
550
550
|
/**
|
|
551
551
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
552
552
|
*
|
|
553
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
553
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#delete Release#delete}
|
|
554
554
|
*/
|
|
555
555
|
readonly delete?: string;
|
|
556
556
|
/**
|
|
557
557
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
558
558
|
*
|
|
559
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
559
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#read Release#read}
|
|
560
560
|
*/
|
|
561
561
|
readonly read?: string;
|
|
562
562
|
/**
|
|
563
563
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
564
564
|
*
|
|
565
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
565
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#update Release#update}
|
|
566
566
|
*/
|
|
567
567
|
readonly update?: string;
|
|
568
568
|
}
|
|
@@ -600,7 +600,7 @@ export declare class ReleaseTimeoutsOutputReference extends cdktn.ComplexObject
|
|
|
600
600
|
get updateInput(): string | undefined;
|
|
601
601
|
}
|
|
602
602
|
/**
|
|
603
|
-
* Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
603
|
+
* Represents a {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release helm_release}
|
|
604
604
|
*/
|
|
605
605
|
export declare class Release extends cdktn.TerraformResource {
|
|
606
606
|
static readonly tfResourceType = "helm_release";
|
|
@@ -608,12 +608,12 @@ export declare class Release extends cdktn.TerraformResource {
|
|
|
608
608
|
* Generates CDKTN code for importing a Release resource upon running "cdktn plan <stack-name>"
|
|
609
609
|
* @param scope The scope in which to define this construct
|
|
610
610
|
* @param importToId The construct id used in the generated config for the Release to import
|
|
611
|
-
* @param importFromId The id of the existing Release that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
611
|
+
* @param importFromId The id of the existing Release that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release#import import section} in the documentation of this resource for the id to use
|
|
612
612
|
* @param provider? Optional instance of the provider where the Release to import is found
|
|
613
613
|
*/
|
|
614
614
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktn.TerraformProvider): cdktn.ImportableResource;
|
|
615
615
|
/**
|
|
616
|
-
* Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.
|
|
616
|
+
* Create a new {@link https://registry.terraform.io/providers/hashicorp/helm/3.2.0/docs/resources/release helm_release} Resource
|
|
617
617
|
*
|
|
618
618
|
* @param scope The scope in which to define this construct
|
|
619
619
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|