tencentcloud-sdk-nodejs-tke 4.1.33 → 4.1.36
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
CHANGED
|
@@ -9268,6 +9268,7 @@ export interface DescribeTKEEdgeClusterCredentialResponse {
|
|
|
9268
9268
|
export interface InstanceAdvancedSettings {
|
|
9269
9269
|
/**
|
|
9270
9270
|
* 该节点属于podCIDR大小自定义模式时,可指定节点上运行的pod数量上限
|
|
9271
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9271
9272
|
*/
|
|
9272
9273
|
DesiredPodNumber: number;
|
|
9273
9274
|
/**
|
|
@@ -9277,6 +9278,7 @@ export interface InstanceAdvancedSettings {
|
|
|
9277
9278
|
GPUArgs: GPUArgs;
|
|
9278
9279
|
/**
|
|
9279
9280
|
* base64 编码的用户脚本,在初始化节点之前执行,目前只对添加已有节点生效
|
|
9281
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9280
9282
|
*/
|
|
9281
9283
|
PreStartUserScript: string;
|
|
9282
9284
|
/**
|
|
@@ -9287,14 +9289,17 @@ export interface InstanceAdvancedSettings {
|
|
|
9287
9289
|
/**
|
|
9288
9290
|
* 数据盘挂载点, 默认不挂载数据盘. 已格式化的 ext3,ext4,xfs 文件系统的数据盘将直接挂载,其他文件系统或未格式化的数据盘将自动格式化为ext4 (tlinux系统格式化成xfs)并挂载,请注意备份数据! 无数据盘或有多块数据盘的云主机此设置不生效。
|
|
9289
9291
|
注意,注意,多盘场景请使用下方的DataDisks数据结构,设置对应的云盘类型、云盘大小、挂载路径、是否格式化等信息。
|
|
9292
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9290
9293
|
*/
|
|
9291
9294
|
MountTarget?: string;
|
|
9292
9295
|
/**
|
|
9293
9296
|
* dockerd --graph 指定值, 默认为 /var/lib/docker
|
|
9297
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9294
9298
|
*/
|
|
9295
9299
|
DockerGraphPath?: string;
|
|
9296
9300
|
/**
|
|
9297
9301
|
* base64 编码的用户脚本, 此脚本会在 k8s 组件运行后执行, 需要用户保证脚本的可重入及重试逻辑, 脚本及其生成的日志文件可在节点的 /data/ccs_userscript/ 路径查看, 如果要求节点需要在进行初始化完成后才可加入调度, 可配合 unschedulable 参数使用, 在 userScript 最后初始化完成后, 添加 kubectl uncordon nodename --kubeconfig=/root/.kube/config 命令使节点加入调度
|
|
9302
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9298
9303
|
*/
|
|
9299
9304
|
UserScript?: string;
|
|
9300
9305
|
/**
|