@pulumi/rancher2 10.3.0-alpha.1762412186 → 10.3.0-alpha.1762486765
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/types/input.d.ts +18 -0
- package/types/output.d.ts +36 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/rancher2",
|
|
3
|
-
"version": "10.3.0-alpha.
|
|
3
|
+
"version": "10.3.0-alpha.1762486765",
|
|
4
4
|
"description": "A Pulumi package for creating and managing rancher2 resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "rancher2",
|
|
26
|
-
"version": "10.3.0-alpha.
|
|
26
|
+
"version": "10.3.0-alpha.1762486765"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -4269,6 +4269,10 @@ export interface ClusterV2RkeConfig {
|
|
|
4269
4269
|
* Cluster V2 chart values. It should be in YAML format
|
|
4270
4270
|
*/
|
|
4271
4271
|
chartValues?: pulumi.Input<string>;
|
|
4272
|
+
/**
|
|
4273
|
+
* Cluster V2 data directories
|
|
4274
|
+
*/
|
|
4275
|
+
dataDirectories?: pulumi.Input<pulumi.Input<inputs.ClusterV2RkeConfigDataDirectory>[]>;
|
|
4272
4276
|
/**
|
|
4273
4277
|
* Cluster V2 etcd
|
|
4274
4278
|
*/
|
|
@@ -4320,6 +4324,20 @@ export interface ClusterV2RkeConfig {
|
|
|
4320
4324
|
*/
|
|
4321
4325
|
upgradeStrategy?: pulumi.Input<inputs.ClusterV2RkeConfigUpgradeStrategy>;
|
|
4322
4326
|
}
|
|
4327
|
+
export interface ClusterV2RkeConfigDataDirectory {
|
|
4328
|
+
/**
|
|
4329
|
+
* Desired k8s distro data directory.
|
|
4330
|
+
*/
|
|
4331
|
+
k8sDistro?: pulumi.Input<string>;
|
|
4332
|
+
/**
|
|
4333
|
+
* Desired provisioning data directory.
|
|
4334
|
+
*/
|
|
4335
|
+
provisioning?: pulumi.Input<string>;
|
|
4336
|
+
/**
|
|
4337
|
+
* Desired System Agent data directory.
|
|
4338
|
+
*/
|
|
4339
|
+
systemAgent?: pulumi.Input<string>;
|
|
4340
|
+
}
|
|
4323
4341
|
export interface ClusterV2RkeConfigEtcd {
|
|
4324
4342
|
/**
|
|
4325
4343
|
* Disable ETCD snapshots
|
package/types/output.d.ts
CHANGED
|
@@ -4268,6 +4268,10 @@ export interface ClusterV2RkeConfig {
|
|
|
4268
4268
|
* Cluster V2 chart values. It should be in YAML format
|
|
4269
4269
|
*/
|
|
4270
4270
|
chartValues?: string;
|
|
4271
|
+
/**
|
|
4272
|
+
* Cluster V2 data directories
|
|
4273
|
+
*/
|
|
4274
|
+
dataDirectories?: outputs.ClusterV2RkeConfigDataDirectory[];
|
|
4271
4275
|
/**
|
|
4272
4276
|
* Cluster V2 etcd
|
|
4273
4277
|
*/
|
|
@@ -4319,6 +4323,20 @@ export interface ClusterV2RkeConfig {
|
|
|
4319
4323
|
*/
|
|
4320
4324
|
upgradeStrategy?: outputs.ClusterV2RkeConfigUpgradeStrategy;
|
|
4321
4325
|
}
|
|
4326
|
+
export interface ClusterV2RkeConfigDataDirectory {
|
|
4327
|
+
/**
|
|
4328
|
+
* Desired k8s distro data directory.
|
|
4329
|
+
*/
|
|
4330
|
+
k8sDistro?: string;
|
|
4331
|
+
/**
|
|
4332
|
+
* Desired provisioning data directory.
|
|
4333
|
+
*/
|
|
4334
|
+
provisioning?: string;
|
|
4335
|
+
/**
|
|
4336
|
+
* Desired System Agent data directory.
|
|
4337
|
+
*/
|
|
4338
|
+
systemAgent?: string;
|
|
4339
|
+
}
|
|
4322
4340
|
export interface ClusterV2RkeConfigEtcd {
|
|
4323
4341
|
/**
|
|
4324
4342
|
* Disable ETCD snapshots
|
|
@@ -7463,6 +7481,10 @@ export interface GetClusterV2RkeConfig {
|
|
|
7463
7481
|
* Cluster V2 chart values. It should be in YAML format
|
|
7464
7482
|
*/
|
|
7465
7483
|
chartValues?: string;
|
|
7484
|
+
/**
|
|
7485
|
+
* Cluster V2 data directories
|
|
7486
|
+
*/
|
|
7487
|
+
dataDirectories?: outputs.GetClusterV2RkeConfigDataDirectory[];
|
|
7466
7488
|
/**
|
|
7467
7489
|
* Cluster V2 etcd
|
|
7468
7490
|
*/
|
|
@@ -7514,6 +7536,20 @@ export interface GetClusterV2RkeConfig {
|
|
|
7514
7536
|
*/
|
|
7515
7537
|
upgradeStrategy?: outputs.GetClusterV2RkeConfigUpgradeStrategy;
|
|
7516
7538
|
}
|
|
7539
|
+
export interface GetClusterV2RkeConfigDataDirectory {
|
|
7540
|
+
/**
|
|
7541
|
+
* Desired k8s distro data directory.
|
|
7542
|
+
*/
|
|
7543
|
+
k8sDistro?: string;
|
|
7544
|
+
/**
|
|
7545
|
+
* Desired provisioning data directory.
|
|
7546
|
+
*/
|
|
7547
|
+
provisioning?: string;
|
|
7548
|
+
/**
|
|
7549
|
+
* Desired System Agent data directory.
|
|
7550
|
+
*/
|
|
7551
|
+
systemAgent?: string;
|
|
7552
|
+
}
|
|
7517
7553
|
export interface GetClusterV2RkeConfigEtcd {
|
|
7518
7554
|
/**
|
|
7519
7555
|
* Disable ETCD snapshots
|