@pulumiverse/talos 0.3.0 → 0.4.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/getHealth.d.ts +14 -2
- package/cluster/getHealth.js +4 -2
- package/cluster/getHealth.js.map +1 -1
- package/cluster/index.d.ts +3 -0
- package/cluster/index.js +16 -1
- package/cluster/index.js.map +1 -1
- package/cluster/kubeconfig.d.ts +96 -0
- package/cluster/kubeconfig.js +70 -0
- package/cluster/kubeconfig.js.map +1 -0
- package/config/index.d.ts +1 -0
- package/config/index.js +21 -0
- package/config/index.js.map +1 -0
- package/config/vars.d.ts +4 -0
- package/config/vars.js +13 -0
- package/config/vars.js.map +1 -0
- package/imagefactory/getExtensionsVersions.d.ts +92 -0
- package/imagefactory/getExtensionsVersions.js +64 -0
- package/imagefactory/getExtensionsVersions.js.map +1 -0
- package/imagefactory/getOverlaysVersions.d.ts +86 -0
- package/imagefactory/getOverlaysVersions.js +58 -0
- package/imagefactory/getOverlaysVersions.js.map +1 -0
- package/imagefactory/getUrls.d.ts +42 -0
- package/imagefactory/getUrls.js +36 -0
- package/imagefactory/getUrls.js.map +1 -0
- package/imagefactory/getVersions.d.ts +46 -0
- package/imagefactory/getVersions.js +30 -0
- package/imagefactory/getVersions.js.map +1 -0
- package/imagefactory/index.d.ts +15 -0
- package/imagefactory/index.js +34 -0
- package/imagefactory/index.js.map +1 -0
- package/imagefactory/schematic.d.ts +51 -0
- package/imagefactory/schematic.js +52 -0
- package/imagefactory/schematic.js.map +1 -0
- package/index.d.ts +3 -1
- package/index.js +5 -1
- package/index.js.map +1 -1
- package/machine/configurationApply.d.ts +12 -0
- package/machine/configurationApply.js +2 -0
- package/machine/configurationApply.js.map +1 -1
- package/machine/getConfiguration.d.ts +6 -6
- package/package.json +2 -2
- package/provider.d.ts +8 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/types/input.d.ts +98 -0
- package/types/output.d.ts +139 -0
package/types/input.d.ts
CHANGED
|
@@ -111,6 +111,86 @@ export declare namespace cluster {
|
|
|
111
111
|
*/
|
|
112
112
|
read?: pulumi.Input<string>;
|
|
113
113
|
}
|
|
114
|
+
interface KubeconfigClientConfiguration {
|
|
115
|
+
/**
|
|
116
|
+
* The client CA certificate
|
|
117
|
+
*/
|
|
118
|
+
caCertificate: pulumi.Input<string>;
|
|
119
|
+
/**
|
|
120
|
+
* The client certificate
|
|
121
|
+
*/
|
|
122
|
+
clientCertificate: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* The client key
|
|
125
|
+
*/
|
|
126
|
+
clientKey: pulumi.Input<string>;
|
|
127
|
+
}
|
|
128
|
+
interface KubeconfigKubernetesClientConfiguration {
|
|
129
|
+
/**
|
|
130
|
+
* The kubernetes CA certificate
|
|
131
|
+
*/
|
|
132
|
+
caCertificate?: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* The kubernetes client certificate
|
|
135
|
+
*/
|
|
136
|
+
clientCertificate?: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* The kubernetes client key
|
|
139
|
+
*/
|
|
140
|
+
clientKey?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* The kubernetes host
|
|
143
|
+
*/
|
|
144
|
+
host?: pulumi.Input<string>;
|
|
145
|
+
}
|
|
146
|
+
interface KubeconfigTimeouts {
|
|
147
|
+
/**
|
|
148
|
+
* 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).
|
|
149
|
+
*/
|
|
150
|
+
create?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* 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).
|
|
153
|
+
*/
|
|
154
|
+
update?: pulumi.Input<string>;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
export declare namespace imageFactory {
|
|
158
|
+
interface GetExtensionsVersionsFilters {
|
|
159
|
+
/**
|
|
160
|
+
* The name of the extension to filter by.
|
|
161
|
+
*/
|
|
162
|
+
names?: string[];
|
|
163
|
+
}
|
|
164
|
+
interface GetExtensionsVersionsFiltersArgs {
|
|
165
|
+
/**
|
|
166
|
+
* The name of the extension to filter by.
|
|
167
|
+
*/
|
|
168
|
+
names?: pulumi.Input<pulumi.Input<string>[]>;
|
|
169
|
+
}
|
|
170
|
+
interface GetOverlaysVersionsFilters {
|
|
171
|
+
/**
|
|
172
|
+
* The name of the overlay to filter by.
|
|
173
|
+
*/
|
|
174
|
+
name?: string;
|
|
175
|
+
}
|
|
176
|
+
interface GetOverlaysVersionsFiltersArgs {
|
|
177
|
+
/**
|
|
178
|
+
* The name of the overlay to filter by.
|
|
179
|
+
*/
|
|
180
|
+
name?: pulumi.Input<string>;
|
|
181
|
+
}
|
|
182
|
+
interface GetVersionsFilters {
|
|
183
|
+
/**
|
|
184
|
+
* If set to true, only stable versions will be returned. If set to false, all versions will be returned.
|
|
185
|
+
*/
|
|
186
|
+
stableVersionsOnly?: boolean;
|
|
187
|
+
}
|
|
188
|
+
interface GetVersionsFiltersArgs {
|
|
189
|
+
/**
|
|
190
|
+
* If set to true, only stable versions will be returned. If set to false, all versions will be returned.
|
|
191
|
+
*/
|
|
192
|
+
stableVersionsOnly?: pulumi.Input<boolean>;
|
|
193
|
+
}
|
|
114
194
|
}
|
|
115
195
|
export declare namespace machine {
|
|
116
196
|
interface BootstrapTimeouts {
|
|
@@ -208,6 +288,20 @@ export declare namespace machine {
|
|
|
208
288
|
*/
|
|
209
289
|
secret: pulumi.Input<string>;
|
|
210
290
|
}
|
|
291
|
+
interface ConfigurationApplyOnDestroy {
|
|
292
|
+
/**
|
|
293
|
+
* Graceful indicates whether node should leave etcd before the upgrade, it also enforces etcd checks before leaving. Default true
|
|
294
|
+
*/
|
|
295
|
+
graceful?: pulumi.Input<boolean>;
|
|
296
|
+
/**
|
|
297
|
+
* Reboot indicates whether node should reboot or halt after resetting. Default false
|
|
298
|
+
*/
|
|
299
|
+
reboot?: pulumi.Input<boolean>;
|
|
300
|
+
/**
|
|
301
|
+
* Reset the machine to the initial state (STATE and EPHEMERAL will be wiped). Default false
|
|
302
|
+
*/
|
|
303
|
+
reset?: pulumi.Input<boolean>;
|
|
304
|
+
}
|
|
211
305
|
interface GetDisksClientConfiguration {
|
|
212
306
|
/**
|
|
213
307
|
* The client CA certificate
|
|
@@ -399,6 +493,10 @@ export declare namespace machine {
|
|
|
399
493
|
* 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).
|
|
400
494
|
*/
|
|
401
495
|
create?: pulumi.Input<string>;
|
|
496
|
+
/**
|
|
497
|
+
* 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.
|
|
498
|
+
*/
|
|
499
|
+
delete?: pulumi.Input<string>;
|
|
402
500
|
/**
|
|
403
501
|
* 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).
|
|
404
502
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -74,6 +74,127 @@ export declare namespace cluster {
|
|
|
74
74
|
*/
|
|
75
75
|
read?: string;
|
|
76
76
|
}
|
|
77
|
+
interface KubeconfigClientConfiguration {
|
|
78
|
+
/**
|
|
79
|
+
* The client CA certificate
|
|
80
|
+
*/
|
|
81
|
+
caCertificate: string;
|
|
82
|
+
/**
|
|
83
|
+
* The client certificate
|
|
84
|
+
*/
|
|
85
|
+
clientCertificate: string;
|
|
86
|
+
/**
|
|
87
|
+
* The client key
|
|
88
|
+
*/
|
|
89
|
+
clientKey: string;
|
|
90
|
+
}
|
|
91
|
+
interface KubeconfigKubernetesClientConfiguration {
|
|
92
|
+
/**
|
|
93
|
+
* The kubernetes CA certificate
|
|
94
|
+
*/
|
|
95
|
+
caCertificate: string;
|
|
96
|
+
/**
|
|
97
|
+
* The kubernetes client certificate
|
|
98
|
+
*/
|
|
99
|
+
clientCertificate: string;
|
|
100
|
+
/**
|
|
101
|
+
* The kubernetes client key
|
|
102
|
+
*/
|
|
103
|
+
clientKey: string;
|
|
104
|
+
/**
|
|
105
|
+
* The kubernetes host
|
|
106
|
+
*/
|
|
107
|
+
host: string;
|
|
108
|
+
}
|
|
109
|
+
interface KubeconfigTimeouts {
|
|
110
|
+
/**
|
|
111
|
+
* 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).
|
|
112
|
+
*/
|
|
113
|
+
create?: string;
|
|
114
|
+
/**
|
|
115
|
+
* 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).
|
|
116
|
+
*/
|
|
117
|
+
update?: string;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
export declare namespace imageFactory {
|
|
121
|
+
interface GetExtensionsVersionsExtensionsInfo {
|
|
122
|
+
author: string;
|
|
123
|
+
description: string;
|
|
124
|
+
digest: string;
|
|
125
|
+
name: string;
|
|
126
|
+
ref: string;
|
|
127
|
+
}
|
|
128
|
+
interface GetExtensionsVersionsFilters {
|
|
129
|
+
/**
|
|
130
|
+
* The name of the extension to filter by.
|
|
131
|
+
*/
|
|
132
|
+
names?: string[];
|
|
133
|
+
}
|
|
134
|
+
interface GetOverlaysVersionsFilters {
|
|
135
|
+
/**
|
|
136
|
+
* The name of the overlay to filter by.
|
|
137
|
+
*/
|
|
138
|
+
name?: string;
|
|
139
|
+
}
|
|
140
|
+
interface GetOverlaysVersionsOverlaysInfo {
|
|
141
|
+
digest: string;
|
|
142
|
+
image: string;
|
|
143
|
+
name: string;
|
|
144
|
+
ref: string;
|
|
145
|
+
}
|
|
146
|
+
interface GetUrlsUrls {
|
|
147
|
+
/**
|
|
148
|
+
* The URL for the disk image.
|
|
149
|
+
*/
|
|
150
|
+
diskImage: string;
|
|
151
|
+
/**
|
|
152
|
+
* The URL for the disk image with secure boot.
|
|
153
|
+
*/
|
|
154
|
+
diskImageSecureboot: string;
|
|
155
|
+
/**
|
|
156
|
+
* The URL for the initramfs image.
|
|
157
|
+
*/
|
|
158
|
+
initramfs: string;
|
|
159
|
+
/**
|
|
160
|
+
* The URL for the installer image.
|
|
161
|
+
*/
|
|
162
|
+
installer: string;
|
|
163
|
+
/**
|
|
164
|
+
* The URL for the installer image with secure boot.
|
|
165
|
+
*/
|
|
166
|
+
installerSecureboot: string;
|
|
167
|
+
/**
|
|
168
|
+
* The URL for the ISO image.
|
|
169
|
+
*/
|
|
170
|
+
iso: string;
|
|
171
|
+
/**
|
|
172
|
+
* The URL for the ISO image with secure boot.
|
|
173
|
+
*/
|
|
174
|
+
isoSecureboot: string;
|
|
175
|
+
/**
|
|
176
|
+
* The URL for the kernel image.
|
|
177
|
+
*/
|
|
178
|
+
kernel: string;
|
|
179
|
+
/**
|
|
180
|
+
* The URL for the kernel command line.
|
|
181
|
+
*/
|
|
182
|
+
kernelCommandLine: string;
|
|
183
|
+
/**
|
|
184
|
+
* The URL for the PXE image.
|
|
185
|
+
*/
|
|
186
|
+
pxe: string;
|
|
187
|
+
/**
|
|
188
|
+
* The URL for the UKI image.
|
|
189
|
+
*/
|
|
190
|
+
uki: string;
|
|
191
|
+
}
|
|
192
|
+
interface GetVersionsFilters {
|
|
193
|
+
/**
|
|
194
|
+
* If set to true, only stable versions will be returned. If set to false, all versions will be returned.
|
|
195
|
+
*/
|
|
196
|
+
stableVersionsOnly?: boolean;
|
|
197
|
+
}
|
|
77
198
|
}
|
|
78
199
|
export declare namespace machine {
|
|
79
200
|
interface BootstrapTimeouts {
|
|
@@ -135,6 +256,20 @@ export declare namespace machine {
|
|
|
135
256
|
*/
|
|
136
257
|
secret: string;
|
|
137
258
|
}
|
|
259
|
+
interface ConfigurationApplyOnDestroy {
|
|
260
|
+
/**
|
|
261
|
+
* Graceful indicates whether node should leave etcd before the upgrade, it also enforces etcd checks before leaving. Default true
|
|
262
|
+
*/
|
|
263
|
+
graceful: boolean;
|
|
264
|
+
/**
|
|
265
|
+
* Reboot indicates whether node should reboot or halt after resetting. Default false
|
|
266
|
+
*/
|
|
267
|
+
reboot: boolean;
|
|
268
|
+
/**
|
|
269
|
+
* Reset the machine to the initial state (STATE and EPHEMERAL will be wiped). Default false
|
|
270
|
+
*/
|
|
271
|
+
reset: boolean;
|
|
272
|
+
}
|
|
138
273
|
interface GetDisksClientConfiguration {
|
|
139
274
|
/**
|
|
140
275
|
* The client CA certificate
|
|
@@ -271,6 +406,10 @@ export declare namespace machine {
|
|
|
271
406
|
* 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).
|
|
272
407
|
*/
|
|
273
408
|
create?: string;
|
|
409
|
+
/**
|
|
410
|
+
* 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.
|
|
411
|
+
*/
|
|
412
|
+
delete?: string;
|
|
274
413
|
/**
|
|
275
414
|
* 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).
|
|
276
415
|
*/
|