You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -973,6 +998,15 @@ The `data_disk` object of `master_config` supports the following:
973
998
*`mount_target` - (Optional, String, ForceNew) Mount target.
974
999
*`snapshot_id` - (Optional, String, ForceNew) Data disk snapshot ID.
975
1000
1001
+
The `data_disk` object of `master_config` supports the following:
1002
+
1003
+
*`auto_format_and_mount` - (Optional, Bool, ForceNew) Indicate whether to auto format and mount or not. Default is `false`.
1004
+
*`disk_partition` - (Optional, String, ForceNew) The name of the device or partition to mount. NOTE: this argument doesn't support setting in node pool, or will leads to mount error.
1005
+
*`disk_size` - (Optional, Int, ForceNew) Volume of disk in GB. Default is `0`.
1006
+
*`disk_type` - (Optional, String, ForceNew) Types of disk. Valid value: `LOCAL_BASIC`, `LOCAL_SSD`, `CLOUD_BASIC`, `CLOUD_PREMIUM`, `CLOUD_SSD`, `CLOUD_HSSD`, `CLOUD_TSSD` and `CLOUD_BSSD`.
1007
+
*`file_system` - (Optional, String, ForceNew) File system, e.g. `ext3/ext4/xfs`.
1008
+
*`mount_target` - (Optional, String, ForceNew) Mount target.
1009
+
976
1010
The `data_disk` object of `worker_config` supports the following:
977
1011
978
1012
*`auto_format_and_mount` - (Optional, Bool, ForceNew) Indicate whether to auto format and mount or not. Default is `false`.
@@ -1003,15 +1037,51 @@ The `extension_addon` object supports the following:
1003
1037
*`name` - (Required, String) Add-on name.
1004
1038
*`param` - (Required, String) Parameter of the add-on resource object in JSON string format, please check the example at the top of page for reference.
1005
1039
1040
+
The `extra_args` object of `master_config` supports the following:
1041
+
1042
+
*`kubelet` - (Optional, List, ForceNew) Kubelet custom parameter. The parameter format is ["k1=v1", "k1=v2"].
1043
+
1044
+
The `gpu_args` object of `master_config` supports the following:
1045
+
1046
+
*`cuda` - (Optional, Map, ForceNew) CUDA version. Format like: `{ version: String, name: String }`. `version`: Version of GPU driver or CUDA; `name`: Name of GPU driver or CUDA.
1047
+
*`cudnn` - (Optional, Map, ForceNew) cuDNN version. Format like: `{ version: String, name: String, doc_name: String, dev_name: String }`. `version`: cuDNN version; `name`: cuDNN name; `doc_name`: Doc name of cuDNN; `dev_name`: Dev name of cuDNN.
1048
+
*`custom_driver` - (Optional, Map, ForceNew) Custom GPU driver. Format like: `{address: String}`. `address`: URL of custom GPU driver address.
1049
+
*`driver` - (Optional, Map, ForceNew) GPU driver version. Format like: `{ version: String, name: String }`. `version`: Version of GPU driver or CUDA; `name`: Name of GPU driver or CUDA.
1050
+
*`mig_enable` - (Optional, Bool, ForceNew) Whether to enable MIG.
1051
+
1006
1052
The `instances_para` object of `exist_instance` supports the following:
*`unschedulable` - (Optional, Int, ForceNew) Set whether the joined nodes participate in scheduling, with a default value of 0, indicating participation in scheduling; Non 0 means not participating in scheduling.
1083
+
*`user_script` - (Optional, String, ForceNew) User script encoded in base64, which will be executed after the k8s component runs. The user needs to ensure the script's reentrant and retry logic. The script and its generated log files can be viewed in the node path /data/ccs_userscript/. If the node needs to be initialized before joining the schedule, it can be used in conjunction with the `unschedulable` parameter. After the final initialization of the userScript is completed, add the command "kubectl uncordon nodename --kubeconfig=/root/.kube/config" to add the node to the schedule.
1084
+
1015
1085
The `master_config` object supports the following:
1016
1086
1017
1087
*`instance_type` - (Required, String, ForceNew) Specified types of CVM instance.
@@ -1060,6 +1130,12 @@ The `resource_delete_options` object supports the following:
1060
1130
*`resource_type` - (Required, String) Resource type, valid values are `CBS`, `CLB`, and `CVM`.
1061
1131
*`skip_deletion_protection` - (Optional, Bool) Whether to skip resources with deletion protection enabled, the default is false.
1062
1132
1133
+
The `taints` object of `master_config` supports the following:
1134
+
1135
+
*`effect` - (Optional, String, ForceNew) Effect of the taint.
1136
+
*`key` - (Optional, String, ForceNew) Key of the taint.
1137
+
*`value` - (Optional, String, ForceNew) Value of the taint.
1138
+
1063
1139
The `worker_config` object supports the following:
1064
1140
1065
1141
*`instance_type` - (Required, String, ForceNew) Specified types of CVM instance.
0 commit comments