@pulumi/rancher2 5.1.0 → 5.1.1
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/authConfigPing.d.ts +9 -0
- package/authConfigPing.js.map +1 -1
- package/cloudCredential.d.ts +3 -3
- package/cluster.d.ts +93 -48
- package/cluster.js +52 -7
- package/cluster.js.map +1 -1
- package/clusterRoleTemplateBinding.d.ts +3 -3
- package/clusterSync.d.ts +3 -3
- package/clusterTemplate.d.ts +1 -1
- package/clusterTemplate.js +1 -1
- package/clusterV2.d.ts +6 -26
- package/clusterV2.js +0 -20
- package/clusterV2.js.map +1 -1
- package/feature.d.ts +1 -1
- package/feature.js +1 -1
- package/getCluster.d.ts +3 -3
- package/globalRoleBinding.d.ts +3 -3
- package/machineConfigV2.d.ts +4 -4
- package/machineConfigV2.js +1 -1
- package/nodePool.d.ts +6 -6
- package/nodeTemplate.d.ts +7 -7
- package/nodeTemplate.js +1 -1
- package/package.json +2 -2
- package/projectRoleTemplateBinding.d.ts +3 -3
- package/provider.js +1 -1
- package/provider.js.map +1 -1
- package/registry.d.ts +4 -4
- package/registry.js +4 -4
- package/types/input.d.ts +148 -94
- package/types/output.d.ts +148 -94
package/types/input.d.ts
CHANGED
|
@@ -613,13 +613,22 @@ export interface ClusterAlterRuleSystemServiceRule {
|
|
|
613
613
|
condition?: pulumi.Input<string>;
|
|
614
614
|
}
|
|
615
615
|
export interface ClusterClusterAgentDeploymentCustomization {
|
|
616
|
+
/**
|
|
617
|
+
* User defined tolerations to append to agent (list)
|
|
618
|
+
*/
|
|
616
619
|
appendTolerations?: pulumi.Input<pulumi.Input<inputs.ClusterClusterAgentDeploymentCustomizationAppendToleration>[]>;
|
|
620
|
+
/**
|
|
621
|
+
* User defined affinity to override default agent affinity (string)
|
|
622
|
+
*/
|
|
617
623
|
overrideAffinity?: pulumi.Input<string>;
|
|
624
|
+
/**
|
|
625
|
+
* User defined resource requirements to set on the agent (list)
|
|
626
|
+
*/
|
|
618
627
|
overrideResourceRequirements?: pulumi.Input<pulumi.Input<inputs.ClusterClusterAgentDeploymentCustomizationOverrideResourceRequirement>[]>;
|
|
619
628
|
}
|
|
620
629
|
export interface ClusterClusterAgentDeploymentCustomizationAppendToleration {
|
|
621
630
|
/**
|
|
622
|
-
* The toleration effect.
|
|
631
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
623
632
|
*/
|
|
624
633
|
effect?: pulumi.Input<string>;
|
|
625
634
|
/**
|
|
@@ -627,11 +636,11 @@ export interface ClusterClusterAgentDeploymentCustomizationAppendToleration {
|
|
|
627
636
|
*/
|
|
628
637
|
key: pulumi.Input<string>;
|
|
629
638
|
/**
|
|
630
|
-
* The toleration operator
|
|
639
|
+
* The toleration operator (string)
|
|
631
640
|
*/
|
|
632
641
|
operator?: pulumi.Input<string>;
|
|
633
642
|
/**
|
|
634
|
-
* The
|
|
643
|
+
* The number of seconds a pod will stay bound to a node with a matching taint (int)
|
|
635
644
|
*/
|
|
636
645
|
seconds?: pulumi.Input<number>;
|
|
637
646
|
/**
|
|
@@ -640,9 +649,21 @@ export interface ClusterClusterAgentDeploymentCustomizationAppendToleration {
|
|
|
640
649
|
value?: pulumi.Input<string>;
|
|
641
650
|
}
|
|
642
651
|
export interface ClusterClusterAgentDeploymentCustomizationOverrideResourceRequirement {
|
|
652
|
+
/**
|
|
653
|
+
* The maximum CPU limit for agent (string)
|
|
654
|
+
*/
|
|
643
655
|
cpuLimit?: pulumi.Input<string>;
|
|
656
|
+
/**
|
|
657
|
+
* The minimum CPU required for agent (string)
|
|
658
|
+
*/
|
|
644
659
|
cpuRequest?: pulumi.Input<string>;
|
|
660
|
+
/**
|
|
661
|
+
* The maximum memory limit for agent (string)
|
|
662
|
+
*/
|
|
645
663
|
memoryLimit?: pulumi.Input<string>;
|
|
664
|
+
/**
|
|
665
|
+
* The minimum memory required for agent (string)
|
|
666
|
+
*/
|
|
646
667
|
memoryRequest?: pulumi.Input<string>;
|
|
647
668
|
}
|
|
648
669
|
export interface ClusterClusterAuthEndpoint {
|
|
@@ -777,7 +798,7 @@ export interface ClusterEksConfig {
|
|
|
777
798
|
*/
|
|
778
799
|
associateWorkerNodePublicIp?: pulumi.Input<boolean>;
|
|
779
800
|
/**
|
|
780
|
-
* The desired number of worker nodes.
|
|
801
|
+
* The desired number of worker nodes. For Rancher v2.3.x and above. Default `3` (int)
|
|
781
802
|
*/
|
|
782
803
|
desiredNodes?: pulumi.Input<number>;
|
|
783
804
|
ebsEncryption?: pulumi.Input<boolean>;
|
|
@@ -786,7 +807,7 @@ export interface ClusterEksConfig {
|
|
|
786
807
|
*/
|
|
787
808
|
instanceType?: pulumi.Input<string>;
|
|
788
809
|
/**
|
|
789
|
-
* Allow user to specify key name to use.
|
|
810
|
+
* Allow user to specify key name to use. For Rancher v2.2.7 and above (string)
|
|
790
811
|
*/
|
|
791
812
|
keyPairName?: pulumi.Input<string>;
|
|
792
813
|
/**
|
|
@@ -1007,13 +1028,22 @@ export interface ClusterEksConfigV2NodeGroupLaunchTemplate {
|
|
|
1007
1028
|
version?: pulumi.Input<number>;
|
|
1008
1029
|
}
|
|
1009
1030
|
export interface ClusterFleetAgentDeploymentCustomization {
|
|
1031
|
+
/**
|
|
1032
|
+
* User defined tolerations to append to agent (list)
|
|
1033
|
+
*/
|
|
1010
1034
|
appendTolerations?: pulumi.Input<pulumi.Input<inputs.ClusterFleetAgentDeploymentCustomizationAppendToleration>[]>;
|
|
1035
|
+
/**
|
|
1036
|
+
* User defined affinity to override default agent affinity (string)
|
|
1037
|
+
*/
|
|
1011
1038
|
overrideAffinity?: pulumi.Input<string>;
|
|
1039
|
+
/**
|
|
1040
|
+
* User defined resource requirements to set on the agent (list)
|
|
1041
|
+
*/
|
|
1012
1042
|
overrideResourceRequirements?: pulumi.Input<pulumi.Input<inputs.ClusterFleetAgentDeploymentCustomizationOverrideResourceRequirement>[]>;
|
|
1013
1043
|
}
|
|
1014
1044
|
export interface ClusterFleetAgentDeploymentCustomizationAppendToleration {
|
|
1015
1045
|
/**
|
|
1016
|
-
* The toleration effect.
|
|
1046
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
1017
1047
|
*/
|
|
1018
1048
|
effect?: pulumi.Input<string>;
|
|
1019
1049
|
/**
|
|
@@ -1021,11 +1051,11 @@ export interface ClusterFleetAgentDeploymentCustomizationAppendToleration {
|
|
|
1021
1051
|
*/
|
|
1022
1052
|
key: pulumi.Input<string>;
|
|
1023
1053
|
/**
|
|
1024
|
-
* The toleration operator
|
|
1054
|
+
* The toleration operator (string)
|
|
1025
1055
|
*/
|
|
1026
1056
|
operator?: pulumi.Input<string>;
|
|
1027
1057
|
/**
|
|
1028
|
-
* The
|
|
1058
|
+
* The number of seconds a pod will stay bound to a node with a matching taint (int)
|
|
1029
1059
|
*/
|
|
1030
1060
|
seconds?: pulumi.Input<number>;
|
|
1031
1061
|
/**
|
|
@@ -1034,9 +1064,21 @@ export interface ClusterFleetAgentDeploymentCustomizationAppendToleration {
|
|
|
1034
1064
|
value?: pulumi.Input<string>;
|
|
1035
1065
|
}
|
|
1036
1066
|
export interface ClusterFleetAgentDeploymentCustomizationOverrideResourceRequirement {
|
|
1067
|
+
/**
|
|
1068
|
+
* The maximum CPU limit for agent (string)
|
|
1069
|
+
*/
|
|
1037
1070
|
cpuLimit?: pulumi.Input<string>;
|
|
1071
|
+
/**
|
|
1072
|
+
* The minimum CPU required for agent (string)
|
|
1073
|
+
*/
|
|
1038
1074
|
cpuRequest?: pulumi.Input<string>;
|
|
1075
|
+
/**
|
|
1076
|
+
* The maximum memory limit for agent (string)
|
|
1077
|
+
*/
|
|
1039
1078
|
memoryLimit?: pulumi.Input<string>;
|
|
1079
|
+
/**
|
|
1080
|
+
* The minimum memory required for agent (string)
|
|
1081
|
+
*/
|
|
1040
1082
|
memoryRequest?: pulumi.Input<string>;
|
|
1041
1083
|
}
|
|
1042
1084
|
export interface ClusterGkeConfig {
|
|
@@ -1513,7 +1555,7 @@ export interface ClusterGkeConfigV2NodePoolConfig {
|
|
|
1513
1555
|
}
|
|
1514
1556
|
export interface ClusterGkeConfigV2NodePoolConfigTaint {
|
|
1515
1557
|
/**
|
|
1516
|
-
* The toleration effect.
|
|
1558
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
1517
1559
|
*/
|
|
1518
1560
|
effect: pulumi.Input<string>;
|
|
1519
1561
|
/**
|
|
@@ -1595,7 +1637,7 @@ export interface ClusterOkeConfig {
|
|
|
1595
1637
|
*/
|
|
1596
1638
|
enableKubernetesDashboard?: pulumi.Input<boolean>;
|
|
1597
1639
|
/**
|
|
1598
|
-
* Specifies whether Kubernetes API endpoint is a private IP only accessible from within the VCN. Default `false`
|
|
1640
|
+
* Specifies whether Kubernetes API endpoint is a private IP only accessible from within the VCN. Default `false` for Rancher v2.5.10 and above (bool)
|
|
1599
1641
|
*/
|
|
1600
1642
|
enablePrivateControlPlane?: pulumi.Input<boolean>;
|
|
1601
1643
|
/**
|
|
@@ -1611,7 +1653,7 @@ export interface ClusterOkeConfig {
|
|
|
1611
1653
|
*/
|
|
1612
1654
|
flexOcpus?: pulumi.Input<number>;
|
|
1613
1655
|
/**
|
|
1614
|
-
* The OCID of a KMS vault master key used to encrypt secrets at rest. See [here](https://docs.oracle.com/en-us/iaas/Content/ContEng/Tasks/contengencryptingdata.htm) for help creating a vault and master encryption key.
|
|
1656
|
+
* The OCID of a KMS vault master key used to encrypt secrets at rest. See [here](https://docs.oracle.com/en-us/iaas/Content/ContEng/Tasks/contengencryptingdata.htm) for help creating a vault and master encryption key. For Rancher v2.5.9 and above (string)
|
|
1615
1657
|
*/
|
|
1616
1658
|
kmsKeyId?: pulumi.Input<string>;
|
|
1617
1659
|
/**
|
|
@@ -1765,7 +1807,7 @@ export interface ClusterRkeConfig {
|
|
|
1765
1807
|
*/
|
|
1766
1808
|
cloudProvider?: pulumi.Input<inputs.ClusterRkeConfigCloudProvider>;
|
|
1767
1809
|
/**
|
|
1768
|
-
* RKE dns add-on.
|
|
1810
|
+
* RKE dns add-on. For Rancher v2.2.x (list maxitems:1)
|
|
1769
1811
|
*/
|
|
1770
1812
|
dns?: pulumi.Input<inputs.ClusterRkeConfigDns>;
|
|
1771
1813
|
/**
|
|
@@ -2425,7 +2467,7 @@ export interface ClusterRkeConfigDnsNodelocal {
|
|
|
2425
2467
|
}
|
|
2426
2468
|
export interface ClusterRkeConfigDnsToleration {
|
|
2427
2469
|
/**
|
|
2428
|
-
* The toleration effect.
|
|
2470
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
2429
2471
|
*/
|
|
2430
2472
|
effect?: pulumi.Input<string>;
|
|
2431
2473
|
/**
|
|
@@ -2433,11 +2475,11 @@ export interface ClusterRkeConfigDnsToleration {
|
|
|
2433
2475
|
*/
|
|
2434
2476
|
key: pulumi.Input<string>;
|
|
2435
2477
|
/**
|
|
2436
|
-
* The toleration operator
|
|
2478
|
+
* The toleration operator (string)
|
|
2437
2479
|
*/
|
|
2438
2480
|
operator?: pulumi.Input<string>;
|
|
2439
2481
|
/**
|
|
2440
|
-
* The
|
|
2482
|
+
* The number of seconds a pod will stay bound to a node with a matching taint (int)
|
|
2441
2483
|
*/
|
|
2442
2484
|
seconds?: pulumi.Input<number>;
|
|
2443
2485
|
/**
|
|
@@ -2519,7 +2561,7 @@ export interface ClusterRkeConfigIngress {
|
|
|
2519
2561
|
}
|
|
2520
2562
|
export interface ClusterRkeConfigIngressToleration {
|
|
2521
2563
|
/**
|
|
2522
|
-
* The toleration effect.
|
|
2564
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
2523
2565
|
*/
|
|
2524
2566
|
effect?: pulumi.Input<string>;
|
|
2525
2567
|
/**
|
|
@@ -2527,11 +2569,11 @@ export interface ClusterRkeConfigIngressToleration {
|
|
|
2527
2569
|
*/
|
|
2528
2570
|
key: pulumi.Input<string>;
|
|
2529
2571
|
/**
|
|
2530
|
-
* The toleration operator
|
|
2572
|
+
* The toleration operator (string)
|
|
2531
2573
|
*/
|
|
2532
2574
|
operator?: pulumi.Input<string>;
|
|
2533
2575
|
/**
|
|
2534
|
-
* The
|
|
2576
|
+
* The number of seconds a pod will stay bound to a node with a matching taint (int)
|
|
2535
2577
|
*/
|
|
2536
2578
|
seconds?: pulumi.Input<number>;
|
|
2537
2579
|
/**
|
|
@@ -2587,7 +2629,7 @@ export interface ClusterRkeConfigMonitoring {
|
|
|
2587
2629
|
}
|
|
2588
2630
|
export interface ClusterRkeConfigMonitoringToleration {
|
|
2589
2631
|
/**
|
|
2590
|
-
* The toleration effect.
|
|
2632
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
2591
2633
|
*/
|
|
2592
2634
|
effect?: pulumi.Input<string>;
|
|
2593
2635
|
/**
|
|
@@ -2595,11 +2637,11 @@ export interface ClusterRkeConfigMonitoringToleration {
|
|
|
2595
2637
|
*/
|
|
2596
2638
|
key: pulumi.Input<string>;
|
|
2597
2639
|
/**
|
|
2598
|
-
* The toleration operator
|
|
2640
|
+
* The toleration operator (string)
|
|
2599
2641
|
*/
|
|
2600
2642
|
operator?: pulumi.Input<string>;
|
|
2601
2643
|
/**
|
|
2602
|
-
* The
|
|
2644
|
+
* The number of seconds a pod will stay bound to a node with a matching taint (int)
|
|
2603
2645
|
*/
|
|
2604
2646
|
seconds?: pulumi.Input<number>;
|
|
2605
2647
|
/**
|
|
@@ -2985,7 +3027,7 @@ export interface ClusterRkeConfigNetworkFlannelNetworkProvider {
|
|
|
2985
3027
|
}
|
|
2986
3028
|
export interface ClusterRkeConfigNetworkToleration {
|
|
2987
3029
|
/**
|
|
2988
|
-
* The toleration effect.
|
|
3030
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
2989
3031
|
*/
|
|
2990
3032
|
effect?: pulumi.Input<string>;
|
|
2991
3033
|
/**
|
|
@@ -2993,11 +3035,11 @@ export interface ClusterRkeConfigNetworkToleration {
|
|
|
2993
3035
|
*/
|
|
2994
3036
|
key: pulumi.Input<string>;
|
|
2995
3037
|
/**
|
|
2996
|
-
* The toleration operator
|
|
3038
|
+
* The toleration operator (string)
|
|
2997
3039
|
*/
|
|
2998
3040
|
operator?: pulumi.Input<string>;
|
|
2999
3041
|
/**
|
|
3000
|
-
* The
|
|
3042
|
+
* The number of seconds a pod will stay bound to a node with a matching taint (int)
|
|
3001
3043
|
*/
|
|
3002
3044
|
seconds?: pulumi.Input<number>;
|
|
3003
3045
|
/**
|
|
@@ -3127,7 +3169,7 @@ export interface ClusterRkeConfigServices {
|
|
|
3127
3169
|
}
|
|
3128
3170
|
export interface ClusterRkeConfigServicesEtcd {
|
|
3129
3171
|
/**
|
|
3130
|
-
* Backup options for etcd service.
|
|
3172
|
+
* Backup options for etcd service. For Rancher v2.2.x (list maxitems:1)
|
|
3131
3173
|
*/
|
|
3132
3174
|
backupConfig?: pulumi.Input<inputs.ClusterRkeConfigServicesEtcdBackupConfig>;
|
|
3133
3175
|
/**
|
|
@@ -3161,7 +3203,7 @@ export interface ClusterRkeConfigServicesEtcd {
|
|
|
3161
3203
|
*/
|
|
3162
3204
|
extraEnvs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3163
3205
|
/**
|
|
3164
|
-
* Etcd service GID. Default: `0`. For Rancher v2.3.x
|
|
3206
|
+
* Etcd service GID. Default: `0`. For Rancher v2.3.x and above (int)
|
|
3165
3207
|
*/
|
|
3166
3208
|
gid?: pulumi.Input<number>;
|
|
3167
3209
|
/**
|
|
@@ -3185,7 +3227,7 @@ export interface ClusterRkeConfigServicesEtcd {
|
|
|
3185
3227
|
*/
|
|
3186
3228
|
snapshot?: pulumi.Input<boolean>;
|
|
3187
3229
|
/**
|
|
3188
|
-
* Etcd service UID. Default: `0`. For Rancher v2.3.x
|
|
3230
|
+
* Etcd service UID. Default: `0`. For Rancher v2.3.x and above (int)
|
|
3189
3231
|
*/
|
|
3190
3232
|
uid?: pulumi.Input<number>;
|
|
3191
3233
|
}
|
|
@@ -3211,7 +3253,7 @@ export interface ClusterRkeConfigServicesEtcdBackupConfig {
|
|
|
3211
3253
|
*/
|
|
3212
3254
|
safeTimestamp?: pulumi.Input<boolean>;
|
|
3213
3255
|
/**
|
|
3214
|
-
* Timeout in seconds for etcd backup. Default: `300`.
|
|
3256
|
+
* Timeout in seconds for etcd backup. Default: `300`. For Rancher v2.5.6 and above (int)
|
|
3215
3257
|
*/
|
|
3216
3258
|
timeout?: pulumi.Input<number>;
|
|
3217
3259
|
}
|
|
@@ -3314,18 +3356,6 @@ export interface ClusterRkeConfigServicesKubeApiAdmissionConfiguration {
|
|
|
3314
3356
|
export interface ClusterRkeConfigServicesKubeApiAdmissionConfigurationPlugin {
|
|
3315
3357
|
/**
|
|
3316
3358
|
* Plugin configuration. (string) Ex:
|
|
3317
|
-
*
|
|
3318
|
-
* ```typescript
|
|
3319
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
3320
|
-
* ```
|
|
3321
|
-
* configuration = <<EOF
|
|
3322
|
-
* apiVersion: eventratelimit.admission.k8s.io/v1alpha1
|
|
3323
|
-
* kind: Configuration
|
|
3324
|
-
* limits:
|
|
3325
|
-
* - type: Server
|
|
3326
|
-
* burst: 35000
|
|
3327
|
-
* qps: 6000
|
|
3328
|
-
* EOF
|
|
3329
3359
|
*/
|
|
3330
3360
|
configuration?: pulumi.Input<string>;
|
|
3331
3361
|
/**
|
|
@@ -3340,18 +3370,6 @@ export interface ClusterRkeConfigServicesKubeApiAdmissionConfigurationPlugin {
|
|
|
3340
3370
|
export interface ClusterRkeConfigServicesKubeApiAuditLog {
|
|
3341
3371
|
/**
|
|
3342
3372
|
* Plugin configuration. (string) Ex:
|
|
3343
|
-
*
|
|
3344
|
-
* ```typescript
|
|
3345
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
3346
|
-
* ```
|
|
3347
|
-
* configuration = <<EOF
|
|
3348
|
-
* apiVersion: eventratelimit.admission.k8s.io/v1alpha1
|
|
3349
|
-
* kind: Configuration
|
|
3350
|
-
* limits:
|
|
3351
|
-
* - type: Server
|
|
3352
|
-
* burst: 35000
|
|
3353
|
-
* qps: 6000
|
|
3354
|
-
* EOF
|
|
3355
3373
|
*/
|
|
3356
3374
|
configuration?: pulumi.Input<inputs.ClusterRkeConfigServicesKubeApiAuditLogConfiguration>;
|
|
3357
3375
|
/**
|
|
@@ -3388,18 +3406,6 @@ export interface ClusterRkeConfigServicesKubeApiAuditLogConfiguration {
|
|
|
3388
3406
|
export interface ClusterRkeConfigServicesKubeApiEventRateLimit {
|
|
3389
3407
|
/**
|
|
3390
3408
|
* Plugin configuration. (string) Ex:
|
|
3391
|
-
*
|
|
3392
|
-
* ```typescript
|
|
3393
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
3394
|
-
* ```
|
|
3395
|
-
* configuration = <<EOF
|
|
3396
|
-
* apiVersion: eventratelimit.admission.k8s.io/v1alpha1
|
|
3397
|
-
* kind: Configuration
|
|
3398
|
-
* limits:
|
|
3399
|
-
* - type: Server
|
|
3400
|
-
* burst: 35000
|
|
3401
|
-
* qps: 6000
|
|
3402
|
-
* EOF
|
|
3403
3409
|
*/
|
|
3404
3410
|
configuration?: pulumi.Input<string>;
|
|
3405
3411
|
/**
|
|
@@ -3565,7 +3571,7 @@ export interface ClusterRkeConfigUpgradeStrategyDrainInput {
|
|
|
3565
3571
|
*/
|
|
3566
3572
|
ignoreDaemonSets?: pulumi.Input<boolean>;
|
|
3567
3573
|
/**
|
|
3568
|
-
* Timeout in seconds for etcd backup. Default: `300`.
|
|
3574
|
+
* Timeout in seconds for etcd backup. Default: `300`. For Rancher v2.5.6 and above (int)
|
|
3569
3575
|
*/
|
|
3570
3576
|
timeout?: pulumi.Input<number>;
|
|
3571
3577
|
}
|
|
@@ -4374,23 +4380,35 @@ export interface ClusterV2AgentEnvVar {
|
|
|
4374
4380
|
value: pulumi.Input<string>;
|
|
4375
4381
|
}
|
|
4376
4382
|
export interface ClusterV2ClusterAgentDeploymentCustomization {
|
|
4383
|
+
/**
|
|
4384
|
+
* User defined tolerations to append to agent (list)
|
|
4385
|
+
*/
|
|
4377
4386
|
appendTolerations?: pulumi.Input<pulumi.Input<inputs.ClusterV2ClusterAgentDeploymentCustomizationAppendToleration>[]>;
|
|
4387
|
+
/**
|
|
4388
|
+
* User defined affinity to override default agent affinity (string)
|
|
4389
|
+
*/
|
|
4378
4390
|
overrideAffinity?: pulumi.Input<string>;
|
|
4391
|
+
/**
|
|
4392
|
+
* User defined resource requirements to set on the agent (list)
|
|
4393
|
+
*/
|
|
4379
4394
|
overrideResourceRequirements?: pulumi.Input<pulumi.Input<inputs.ClusterV2ClusterAgentDeploymentCustomizationOverrideResourceRequirement>[]>;
|
|
4380
4395
|
}
|
|
4381
4396
|
export interface ClusterV2ClusterAgentDeploymentCustomizationAppendToleration {
|
|
4382
4397
|
/**
|
|
4383
|
-
* The
|
|
4398
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
4384
4399
|
*/
|
|
4385
4400
|
effect?: pulumi.Input<string>;
|
|
4386
4401
|
/**
|
|
4387
|
-
* The
|
|
4402
|
+
* The toleration key (string)
|
|
4388
4403
|
*/
|
|
4389
4404
|
key: pulumi.Input<string>;
|
|
4390
4405
|
/**
|
|
4391
|
-
*
|
|
4406
|
+
* The toleration operator (string)
|
|
4392
4407
|
*/
|
|
4393
4408
|
operator?: pulumi.Input<string>;
|
|
4409
|
+
/**
|
|
4410
|
+
* The number of seconds a pod will stay bound to a node with a matching taint (int)
|
|
4411
|
+
*/
|
|
4394
4412
|
seconds?: pulumi.Input<number>;
|
|
4395
4413
|
/**
|
|
4396
4414
|
* Rancher agent env var value (string)
|
|
@@ -4398,9 +4416,21 @@ export interface ClusterV2ClusterAgentDeploymentCustomizationAppendToleration {
|
|
|
4398
4416
|
value?: pulumi.Input<string>;
|
|
4399
4417
|
}
|
|
4400
4418
|
export interface ClusterV2ClusterAgentDeploymentCustomizationOverrideResourceRequirement {
|
|
4419
|
+
/**
|
|
4420
|
+
* The maximum CPU limit for agent (string)
|
|
4421
|
+
*/
|
|
4401
4422
|
cpuLimit?: pulumi.Input<string>;
|
|
4423
|
+
/**
|
|
4424
|
+
* The minimum CPU required for agent (string)
|
|
4425
|
+
*/
|
|
4402
4426
|
cpuRequest?: pulumi.Input<string>;
|
|
4427
|
+
/**
|
|
4428
|
+
* The maximum memory limit for agent (string)
|
|
4429
|
+
*/
|
|
4403
4430
|
memoryLimit?: pulumi.Input<string>;
|
|
4431
|
+
/**
|
|
4432
|
+
* The minimum memory required for agent (string)
|
|
4433
|
+
*/
|
|
4404
4434
|
memoryRequest?: pulumi.Input<string>;
|
|
4405
4435
|
}
|
|
4406
4436
|
export interface ClusterV2ClusterRegistrationToken {
|
|
@@ -4462,23 +4492,35 @@ export interface ClusterV2ClusterRegistrationToken {
|
|
|
4462
4492
|
windowsNodeCommand?: pulumi.Input<string>;
|
|
4463
4493
|
}
|
|
4464
4494
|
export interface ClusterV2FleetAgentDeploymentCustomization {
|
|
4495
|
+
/**
|
|
4496
|
+
* User defined tolerations to append to agent (list)
|
|
4497
|
+
*/
|
|
4465
4498
|
appendTolerations?: pulumi.Input<pulumi.Input<inputs.ClusterV2FleetAgentDeploymentCustomizationAppendToleration>[]>;
|
|
4499
|
+
/**
|
|
4500
|
+
* User defined affinity to override default agent affinity (string)
|
|
4501
|
+
*/
|
|
4466
4502
|
overrideAffinity?: pulumi.Input<string>;
|
|
4503
|
+
/**
|
|
4504
|
+
* User defined resource requirements to set on the agent (list)
|
|
4505
|
+
*/
|
|
4467
4506
|
overrideResourceRequirements?: pulumi.Input<pulumi.Input<inputs.ClusterV2FleetAgentDeploymentCustomizationOverrideResourceRequirement>[]>;
|
|
4468
4507
|
}
|
|
4469
4508
|
export interface ClusterV2FleetAgentDeploymentCustomizationAppendToleration {
|
|
4470
4509
|
/**
|
|
4471
|
-
* The
|
|
4510
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
4472
4511
|
*/
|
|
4473
4512
|
effect?: pulumi.Input<string>;
|
|
4474
4513
|
/**
|
|
4475
|
-
* The
|
|
4514
|
+
* The toleration key (string)
|
|
4476
4515
|
*/
|
|
4477
4516
|
key: pulumi.Input<string>;
|
|
4478
4517
|
/**
|
|
4479
|
-
*
|
|
4518
|
+
* The toleration operator (string)
|
|
4480
4519
|
*/
|
|
4481
4520
|
operator?: pulumi.Input<string>;
|
|
4521
|
+
/**
|
|
4522
|
+
* The number of seconds a pod will stay bound to a node with a matching taint (int)
|
|
4523
|
+
*/
|
|
4482
4524
|
seconds?: pulumi.Input<number>;
|
|
4483
4525
|
/**
|
|
4484
4526
|
* Rancher agent env var value (string)
|
|
@@ -4486,9 +4528,21 @@ export interface ClusterV2FleetAgentDeploymentCustomizationAppendToleration {
|
|
|
4486
4528
|
value?: pulumi.Input<string>;
|
|
4487
4529
|
}
|
|
4488
4530
|
export interface ClusterV2FleetAgentDeploymentCustomizationOverrideResourceRequirement {
|
|
4531
|
+
/**
|
|
4532
|
+
* The maximum CPU limit for agent (string)
|
|
4533
|
+
*/
|
|
4489
4534
|
cpuLimit?: pulumi.Input<string>;
|
|
4535
|
+
/**
|
|
4536
|
+
* The minimum CPU required for agent (string)
|
|
4537
|
+
*/
|
|
4490
4538
|
cpuRequest?: pulumi.Input<string>;
|
|
4539
|
+
/**
|
|
4540
|
+
* The maximum memory limit for agent (string)
|
|
4541
|
+
*/
|
|
4491
4542
|
memoryLimit?: pulumi.Input<string>;
|
|
4543
|
+
/**
|
|
4544
|
+
* The minimum memory required for agent (string)
|
|
4545
|
+
*/
|
|
4492
4546
|
memoryRequest?: pulumi.Input<string>;
|
|
4493
4547
|
}
|
|
4494
4548
|
export interface ClusterV2LocalAuthEndpoint {
|
|
@@ -4750,11 +4804,11 @@ export interface ClusterV2RkeConfigMachinePoolRollingUpdate {
|
|
|
4750
4804
|
}
|
|
4751
4805
|
export interface ClusterV2RkeConfigMachinePoolTaint {
|
|
4752
4806
|
/**
|
|
4753
|
-
* The
|
|
4807
|
+
* The toleration effect. Default: `\"NoSchedule\"` (string)
|
|
4754
4808
|
*/
|
|
4755
4809
|
effect?: pulumi.Input<string>;
|
|
4756
4810
|
/**
|
|
4757
|
-
* The
|
|
4811
|
+
* The toleration key (string)
|
|
4758
4812
|
*/
|
|
4759
4813
|
key: pulumi.Input<string>;
|
|
4760
4814
|
/**
|
|
@@ -4788,11 +4842,11 @@ export interface ClusterV2RkeConfigMachineSelectorConfigMachineLabelSelector {
|
|
|
4788
4842
|
}
|
|
4789
4843
|
export interface ClusterV2RkeConfigMachineSelectorConfigMachineLabelSelectorMatchExpression {
|
|
4790
4844
|
/**
|
|
4791
|
-
* The
|
|
4845
|
+
* The toleration key (string)
|
|
4792
4846
|
*/
|
|
4793
4847
|
key?: pulumi.Input<string>;
|
|
4794
4848
|
/**
|
|
4795
|
-
*
|
|
4849
|
+
* The toleration operator (string)
|
|
4796
4850
|
*/
|
|
4797
4851
|
operator?: pulumi.Input<string>;
|
|
4798
4852
|
/**
|
|
@@ -5377,7 +5431,7 @@ export interface MachineConfigV2AzureConfig {
|
|
|
5377
5431
|
*/
|
|
5378
5432
|
customData?: pulumi.Input<string>;
|
|
5379
5433
|
/**
|
|
5380
|
-
* Disk size if using managed disk.
|
|
5434
|
+
* Disk size if using managed disk. For Rancher v2.3.x and above. Default `30` (string)
|
|
5381
5435
|
*/
|
|
5382
5436
|
diskSize?: pulumi.Input<string>;
|
|
5383
5437
|
/**
|
|
@@ -5405,7 +5459,7 @@ export interface MachineConfigV2AzureConfig {
|
|
|
5405
5459
|
*/
|
|
5406
5460
|
location?: pulumi.Input<string>;
|
|
5407
5461
|
/**
|
|
5408
|
-
* Configures VM and availability set for managed disks.
|
|
5462
|
+
* Configures VM and availability set for managed disks. For Rancher v2.3.x and above. Default `false` (bool)
|
|
5409
5463
|
*/
|
|
5410
5464
|
managedDisks?: pulumi.Input<boolean>;
|
|
5411
5465
|
/**
|
|
@@ -5556,7 +5610,7 @@ export interface MachineConfigV2HarvesterConfig {
|
|
|
5556
5610
|
*/
|
|
5557
5611
|
diskInfo?: pulumi.Input<string>;
|
|
5558
5612
|
/**
|
|
5559
|
-
* Disk size if using managed disk.
|
|
5613
|
+
* Disk size if using managed disk. For Rancher v2.3.x and above. Default `30` (string)
|
|
5560
5614
|
*
|
|
5561
5615
|
* @deprecated Use disk_info instead
|
|
5562
5616
|
*/
|
|
@@ -5604,7 +5658,7 @@ export interface MachineConfigV2HarvesterConfig {
|
|
|
5604
5658
|
*/
|
|
5605
5659
|
userData?: pulumi.Input<string>;
|
|
5606
5660
|
/**
|
|
5607
|
-
* Virtual machine affinity, only base64 format is supported. For Rancher v2.6.7
|
|
5661
|
+
* Virtual machine affinity, only base64 format is supported. For Rancher v2.6.7 and above (string)
|
|
5608
5662
|
*/
|
|
5609
5663
|
vmAffinity?: pulumi.Input<string>;
|
|
5610
5664
|
/**
|
|
@@ -5829,8 +5883,8 @@ export interface MachineConfigV2OpenstackConfig {
|
|
|
5829
5883
|
username?: pulumi.Input<string>;
|
|
5830
5884
|
/**
|
|
5831
5885
|
* OpenStack volume device path (attaching). Applicable only when `bootFromVolume` is `true`. Omit for auto `/dev/vdb`. (string)
|
|
5832
|
-
* > **Note
|
|
5833
|
-
* > **Note
|
|
5886
|
+
* > **Note:**: `Required+` denotes that either the _name or _id is required but you cannot use both.
|
|
5887
|
+
* > **Note:**: `Required++` denotes that either the _name or _id is required unless `applicationCredentialId` is defined.
|
|
5834
5888
|
*/
|
|
5835
5889
|
volumeDevicePath?: pulumi.Input<string>;
|
|
5836
5890
|
/**
|
|
@@ -5900,7 +5954,7 @@ export interface MachineConfigV2VsphereConfig {
|
|
|
5900
5954
|
*/
|
|
5901
5955
|
datastoreCluster?: pulumi.Input<string>;
|
|
5902
5956
|
/**
|
|
5903
|
-
* Disk size if using managed disk.
|
|
5957
|
+
* Disk size if using managed disk. For Rancher v2.3.x and above. Default `30` (string)
|
|
5904
5958
|
*/
|
|
5905
5959
|
diskSize?: pulumi.Input<string>;
|
|
5906
5960
|
/**
|
|
@@ -6260,7 +6314,7 @@ export interface NodeTemplateAmazonec2Config {
|
|
|
6260
6314
|
/**
|
|
6261
6315
|
* Path to file with cloud-init user data (string)
|
|
6262
6316
|
*
|
|
6263
|
-
* > **Note
|
|
6317
|
+
* > **Note:**: You need to install the Hetzner Docker Machine Driver first as shown as in the examples section.
|
|
6264
6318
|
*/
|
|
6265
6319
|
userdata?: pulumi.Input<string>;
|
|
6266
6320
|
/**
|
|
@@ -6299,7 +6353,7 @@ export interface NodeTemplateAzureConfig {
|
|
|
6299
6353
|
*/
|
|
6300
6354
|
customData?: pulumi.Input<string>;
|
|
6301
6355
|
/**
|
|
6302
|
-
* Disk size if using managed disk.
|
|
6356
|
+
* Disk size if using managed disk. For Rancher v2.3.x and above. Default `30` (string)
|
|
6303
6357
|
*/
|
|
6304
6358
|
diskSize?: pulumi.Input<string>;
|
|
6305
6359
|
/**
|
|
@@ -6327,7 +6381,7 @@ export interface NodeTemplateAzureConfig {
|
|
|
6327
6381
|
*/
|
|
6328
6382
|
location?: pulumi.Input<string>;
|
|
6329
6383
|
/**
|
|
6330
|
-
* Configures VM and availability set for managed disks.
|
|
6384
|
+
* Configures VM and availability set for managed disks. For Rancher v2.3.x and above. Default `false` (bool)
|
|
6331
6385
|
*/
|
|
6332
6386
|
managedDisks?: pulumi.Input<boolean>;
|
|
6333
6387
|
/**
|
|
@@ -6343,7 +6397,7 @@ export interface NodeTemplateAzureConfig {
|
|
|
6343
6397
|
*/
|
|
6344
6398
|
openPorts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6345
6399
|
/**
|
|
6346
|
-
* Azure marketplace purchase plan for Azure Virtual Machine. Format is `<publisher>:<product>:<plan>`.
|
|
6400
|
+
* Azure marketplace purchase plan for Azure Virtual Machine. Format is `<publisher>:<product>:<plan>`. For Rancher v2.6.3 and above. (string)
|
|
6347
6401
|
*/
|
|
6348
6402
|
plan?: pulumi.Input<string>;
|
|
6349
6403
|
/**
|
|
@@ -6456,7 +6510,7 @@ export interface NodeTemplateDigitaloceanConfig {
|
|
|
6456
6510
|
/**
|
|
6457
6511
|
* Path to file with cloud-init user data (string)
|
|
6458
6512
|
*
|
|
6459
|
-
* > **Note
|
|
6513
|
+
* > **Note:**: You need to install the Hetzner Docker Machine Driver first as shown as in the examples section.
|
|
6460
6514
|
*/
|
|
6461
6515
|
userdata?: pulumi.Input<string>;
|
|
6462
6516
|
}
|
|
@@ -6476,7 +6530,7 @@ export interface NodeTemplateHarvesterConfig {
|
|
|
6476
6530
|
*/
|
|
6477
6531
|
diskInfo?: pulumi.Input<string>;
|
|
6478
6532
|
/**
|
|
6479
|
-
* Disk size if using managed disk.
|
|
6533
|
+
* Disk size if using managed disk. For Rancher v2.3.x and above. Default `30` (string)
|
|
6480
6534
|
*
|
|
6481
6535
|
* @deprecated Use disk_info instead
|
|
6482
6536
|
*/
|
|
@@ -6524,7 +6578,7 @@ export interface NodeTemplateHarvesterConfig {
|
|
|
6524
6578
|
*/
|
|
6525
6579
|
userData?: pulumi.Input<string>;
|
|
6526
6580
|
/**
|
|
6527
|
-
* Virtual machine affinity, only base64 format is supported. For Rancher v2.6.7
|
|
6581
|
+
* Virtual machine affinity, only base64 format is supported. For Rancher v2.6.7 and above (string)
|
|
6528
6582
|
*/
|
|
6529
6583
|
vmAffinity?: pulumi.Input<string>;
|
|
6530
6584
|
/**
|
|
@@ -6566,7 +6620,7 @@ export interface NodeTemplateHetznerConfig {
|
|
|
6566
6620
|
/**
|
|
6567
6621
|
* Path to file with cloud-init user data (string)
|
|
6568
6622
|
*
|
|
6569
|
-
* > **Note
|
|
6623
|
+
* > **Note:**: You need to install the Hetzner Docker Machine Driver first as shown as in the examples section.
|
|
6570
6624
|
*/
|
|
6571
6625
|
userdata?: pulumi.Input<string>;
|
|
6572
6626
|
/**
|
|
@@ -6730,7 +6784,7 @@ export interface NodeTemplateOpennebulaConfig {
|
|
|
6730
6784
|
/**
|
|
6731
6785
|
* VCPUs for the VM (string)
|
|
6732
6786
|
*
|
|
6733
|
-
* > **Note
|
|
6787
|
+
* > **Note:**: `Required*` denotes that one of imageName / imageId or templateName / templateId is required but you cannot combine them.
|
|
6734
6788
|
*/
|
|
6735
6789
|
vcpu?: pulumi.Input<string>;
|
|
6736
6790
|
/**
|
|
@@ -6874,9 +6928,9 @@ export interface NodeTemplateOpenstackConfig {
|
|
|
6874
6928
|
/**
|
|
6875
6929
|
* OpenStack volume device path (attaching). Applicable only when `bootFromVolume` is `true`. Omit for auto `/dev/vdb`. (string)
|
|
6876
6930
|
*
|
|
6877
|
-
* > **Note
|
|
6931
|
+
* > **Note:**: `Required*` denotes that either the _name or _id is required but you cannot use both.
|
|
6878
6932
|
*
|
|
6879
|
-
* > **Note
|
|
6933
|
+
* > **Note:**: `Required**` denotes that either the _name or _id is required unless `applicationCredentialId` is defined.
|
|
6880
6934
|
*/
|
|
6881
6935
|
volumeDevicePath?: pulumi.Input<string>;
|
|
6882
6936
|
/**
|
|
@@ -6992,7 +7046,7 @@ export interface NodeTemplateVsphereConfig {
|
|
|
6992
7046
|
*/
|
|
6993
7047
|
datastoreCluster?: pulumi.Input<string>;
|
|
6994
7048
|
/**
|
|
6995
|
-
* Disk size if using managed disk.
|
|
7049
|
+
* Disk size if using managed disk. For Rancher v2.3.x and above. Default `30` (string)
|
|
6996
7050
|
*/
|
|
6997
7051
|
diskSize?: pulumi.Input<string>;
|
|
6998
7052
|
/**
|