tencentcloud-sdk-tke 3.0.1107 → 3.0.1127
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180525/models.rb +13 -5
- data/lib/v20220501/models.rb +11 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8745cedd3d63e89c89059ac87ccb99b96c2a9abe
|
4
|
+
data.tar.gz: f4aaa03159c28e2945b092bbcdc17a6d0c11b8d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd89bfb5612395b016354a15f13be42abb1698f828b4a8ce8113842136ecd87095fff5840d77934ec4f2f0b9888807b97dddc89f6712f90de696282ef21ec42e
|
7
|
+
data.tar.gz: 69702b5129437fb65e890000a39e8e1ed4d06f906da2239764fa92fc84c59001945a82798cea93e995ed9c6468f878120f94d5ef666947392e73d1dd92c284bf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1127
|
data/lib/v20180525/models.rb
CHANGED
@@ -875,6 +875,8 @@ module TencentCloud
|
|
875
875
|
# @type CiliumMode: String
|
876
876
|
# @param ContainerRuntime: 集群使用的runtime类型,包括"docker"和"containerd"两种类型,默认为"docker"
|
877
877
|
# @type ContainerRuntime: String
|
878
|
+
# @param DataPlaneV2: 是否启用 DataPlaneV2(cilium替代kube-proxy)
|
879
|
+
# @type DataPlaneV2: Boolean
|
878
880
|
# @param DeletionProtection: 是否启用集群删除保护
|
879
881
|
# @type DeletionProtection: Boolean
|
880
882
|
# @param EnableCustomizedPodCIDR: 是否开节点podCIDR大小的自定义模式
|
@@ -897,7 +899,7 @@ module TencentCloud
|
|
897
899
|
# 1. 集群版本必须为1.14及以上;
|
898
900
|
# 2. 系统镜像必须是: Tencent Linux 2.4;
|
899
901
|
# @type KubeProxyMode: String
|
900
|
-
# @param NetworkType:
|
902
|
+
# @param NetworkType: 集群网络类型。包括GR(全局路由)和VPC-CNI两种模式,默认为GR。
|
901
903
|
# @type NetworkType: String
|
902
904
|
# @param NodeNameType: 集群中节点NodeName类型(包括 hostname,lan-ip两种形式,默认为lan-ip。如果开启了hostname模式,创建节点时需要设置HostName参数,并且InstanceName需要和HostName一致)
|
903
905
|
# @type NodeNameType: String
|
@@ -908,9 +910,9 @@ module TencentCloud
|
|
908
910
|
# @param VpcCniType: 区分共享网卡多IP模式和独立网卡模式,共享网卡多 IP 模式填写"tke-route-eni",独立网卡模式填写"tke-direct-eni",默认为共享网卡模式
|
909
911
|
# @type VpcCniType: String
|
910
912
|
|
911
|
-
attr_accessor :AsEnabled, :AuditEnabled, :AuditLogTopicId, :AuditLogsetId, :BasePodNumber, :CiliumMode, :ContainerRuntime, :DeletionProtection, :EnableCustomizedPodCIDR, :EtcdOverrideConfigs, :ExtraArgs, :IPVS, :IsDualStack, :IsNonStaticIpMode, :KubeProxyMode, :NetworkType, :NodeNameType, :QGPUShareEnable, :RuntimeVersion, :VpcCniType
|
913
|
+
attr_accessor :AsEnabled, :AuditEnabled, :AuditLogTopicId, :AuditLogsetId, :BasePodNumber, :CiliumMode, :ContainerRuntime, :DataPlaneV2, :DeletionProtection, :EnableCustomizedPodCIDR, :EtcdOverrideConfigs, :ExtraArgs, :IPVS, :IsDualStack, :IsNonStaticIpMode, :KubeProxyMode, :NetworkType, :NodeNameType, :QGPUShareEnable, :RuntimeVersion, :VpcCniType
|
912
914
|
|
913
|
-
def initialize(asenabled=nil, auditenabled=nil, auditlogtopicid=nil, auditlogsetid=nil, basepodnumber=nil, ciliummode=nil, containerruntime=nil, deletionprotection=nil, enablecustomizedpodcidr=nil, etcdoverrideconfigs=nil, extraargs=nil, ipvs=nil, isdualstack=nil, isnonstaticipmode=nil, kubeproxymode=nil, networktype=nil, nodenametype=nil, qgpushareenable=nil, runtimeversion=nil, vpccnitype=nil)
|
915
|
+
def initialize(asenabled=nil, auditenabled=nil, auditlogtopicid=nil, auditlogsetid=nil, basepodnumber=nil, ciliummode=nil, containerruntime=nil, dataplanev2=nil, deletionprotection=nil, enablecustomizedpodcidr=nil, etcdoverrideconfigs=nil, extraargs=nil, ipvs=nil, isdualstack=nil, isnonstaticipmode=nil, kubeproxymode=nil, networktype=nil, nodenametype=nil, qgpushareenable=nil, runtimeversion=nil, vpccnitype=nil)
|
914
916
|
@AsEnabled = asenabled
|
915
917
|
@AuditEnabled = auditenabled
|
916
918
|
@AuditLogTopicId = auditlogtopicid
|
@@ -918,6 +920,7 @@ module TencentCloud
|
|
918
920
|
@BasePodNumber = basepodnumber
|
919
921
|
@CiliumMode = ciliummode
|
920
922
|
@ContainerRuntime = containerruntime
|
923
|
+
@DataPlaneV2 = dataplanev2
|
921
924
|
@DeletionProtection = deletionprotection
|
922
925
|
@EnableCustomizedPodCIDR = enablecustomizedpodcidr
|
923
926
|
@EtcdOverrideConfigs = etcdoverrideconfigs
|
@@ -941,6 +944,7 @@ module TencentCloud
|
|
941
944
|
@BasePodNumber = params['BasePodNumber']
|
942
945
|
@CiliumMode = params['CiliumMode']
|
943
946
|
@ContainerRuntime = params['ContainerRuntime']
|
947
|
+
@DataPlaneV2 = params['DataPlaneV2']
|
944
948
|
@DeletionProtection = params['DeletionProtection']
|
945
949
|
@EnableCustomizedPodCIDR = params['EnableCustomizedPodCIDR']
|
946
950
|
unless params['EtcdOverrideConfigs'].nil?
|
@@ -1470,10 +1474,12 @@ module TencentCloud
|
|
1470
1474
|
# - 容器网络插件为CiliumOverlay。
|
1471
1475
|
# - 支持CDC的托管集群,且网络插件为VPC-CNI。
|
1472
1476
|
# @type SubnetId: String
|
1477
|
+
# @param DataPlaneV2: 是否启用了 DataPlaneV2(cilium替代kube-proxy)
|
1478
|
+
# @type DataPlaneV2: Boolean
|
1473
1479
|
|
1474
|
-
attr_accessor :ClusterCIDR, :IgnoreClusterCIDRConflict, :MaxNodePodNum, :MaxClusterServiceNum, :Ipvs, :VpcId, :Cni, :KubeProxyMode, :ServiceCIDR, :Subnets, :IgnoreServiceCIDRConflict, :IsDualStack, :Ipv6ServiceCIDR, :CiliumMode, :SubnetId
|
1480
|
+
attr_accessor :ClusterCIDR, :IgnoreClusterCIDRConflict, :MaxNodePodNum, :MaxClusterServiceNum, :Ipvs, :VpcId, :Cni, :KubeProxyMode, :ServiceCIDR, :Subnets, :IgnoreServiceCIDRConflict, :IsDualStack, :Ipv6ServiceCIDR, :CiliumMode, :SubnetId, :DataPlaneV2
|
1475
1481
|
|
1476
|
-
def initialize(clustercidr=nil, ignoreclustercidrconflict=nil, maxnodepodnum=nil, maxclusterservicenum=nil, ipvs=nil, vpcid=nil, cni=nil, kubeproxymode=nil, servicecidr=nil, subnets=nil, ignoreservicecidrconflict=nil, isdualstack=nil, ipv6servicecidr=nil, ciliummode=nil, subnetid=nil)
|
1482
|
+
def initialize(clustercidr=nil, ignoreclustercidrconflict=nil, maxnodepodnum=nil, maxclusterservicenum=nil, ipvs=nil, vpcid=nil, cni=nil, kubeproxymode=nil, servicecidr=nil, subnets=nil, ignoreservicecidrconflict=nil, isdualstack=nil, ipv6servicecidr=nil, ciliummode=nil, subnetid=nil, dataplanev2=nil)
|
1477
1483
|
@ClusterCIDR = clustercidr
|
1478
1484
|
@IgnoreClusterCIDRConflict = ignoreclustercidrconflict
|
1479
1485
|
@MaxNodePodNum = maxnodepodnum
|
@@ -1489,6 +1495,7 @@ module TencentCloud
|
|
1489
1495
|
@Ipv6ServiceCIDR = ipv6servicecidr
|
1490
1496
|
@CiliumMode = ciliummode
|
1491
1497
|
@SubnetId = subnetid
|
1498
|
+
@DataPlaneV2 = dataplanev2
|
1492
1499
|
end
|
1493
1500
|
|
1494
1501
|
def deserialize(params)
|
@@ -1507,6 +1514,7 @@ module TencentCloud
|
|
1507
1514
|
@Ipv6ServiceCIDR = params['Ipv6ServiceCIDR']
|
1508
1515
|
@CiliumMode = params['CiliumMode']
|
1509
1516
|
@SubnetId = params['SubnetId']
|
1517
|
+
@DataPlaneV2 = params['DataPlaneV2']
|
1510
1518
|
end
|
1511
1519
|
end
|
1512
1520
|
|
data/lib/v20220501/models.rb
CHANGED
@@ -175,14 +175,18 @@ module TencentCloud
|
|
175
175
|
# @type InternetAccessible: :class:`Tencentcloud::Tke.v20220501.models.InternetAccessible`
|
176
176
|
# @param DataDisks: 原生节点池数据盘列表
|
177
177
|
# @type DataDisks: Array
|
178
|
+
# @param QGPUEnable: qgpu开关
|
179
|
+
# @type QGPUEnable: Boolean
|
178
180
|
# @param KeyIds: 节点池ssh公钥id数组
|
179
181
|
# @type KeyIds: Array
|
180
182
|
# @param MachineType: 节点池类型
|
181
183
|
# @type MachineType: String
|
184
|
+
# @param AutomationService: 原生节点池安装节点自动化助手开关
|
185
|
+
# @type AutomationService: Boolean
|
182
186
|
|
183
|
-
attr_accessor :Scaling, :SubnetIds, :InstanceChargeType, :SystemDisk, :InstanceTypes, :SecurityGroupIds, :UpgradeSettings, :AutoRepair, :InstanceChargePrepaid, :Management, :HealthCheckPolicyName, :HostNamePattern, :KubeletArgs, :Lifecycle, :RuntimeRootDir, :EnableAutoscaling, :Replicas, :InternetAccessible, :DataDisks, :KeyIds, :MachineType
|
187
|
+
attr_accessor :Scaling, :SubnetIds, :InstanceChargeType, :SystemDisk, :InstanceTypes, :SecurityGroupIds, :UpgradeSettings, :AutoRepair, :InstanceChargePrepaid, :Management, :HealthCheckPolicyName, :HostNamePattern, :KubeletArgs, :Lifecycle, :RuntimeRootDir, :EnableAutoscaling, :Replicas, :InternetAccessible, :DataDisks, :QGPUEnable, :KeyIds, :MachineType, :AutomationService
|
184
188
|
|
185
|
-
def initialize(scaling=nil, subnetids=nil, instancechargetype=nil, systemdisk=nil, instancetypes=nil, securitygroupids=nil, upgradesettings=nil, autorepair=nil, instancechargeprepaid=nil, management=nil, healthcheckpolicyname=nil, hostnamepattern=nil, kubeletargs=nil, lifecycle=nil, runtimerootdir=nil, enableautoscaling=nil, replicas=nil, internetaccessible=nil, datadisks=nil, keyids=nil, machinetype=nil)
|
189
|
+
def initialize(scaling=nil, subnetids=nil, instancechargetype=nil, systemdisk=nil, instancetypes=nil, securitygroupids=nil, upgradesettings=nil, autorepair=nil, instancechargeprepaid=nil, management=nil, healthcheckpolicyname=nil, hostnamepattern=nil, kubeletargs=nil, lifecycle=nil, runtimerootdir=nil, enableautoscaling=nil, replicas=nil, internetaccessible=nil, datadisks=nil, qgpuenable=nil, keyids=nil, machinetype=nil, automationservice=nil)
|
186
190
|
@Scaling = scaling
|
187
191
|
@SubnetIds = subnetids
|
188
192
|
@InstanceChargeType = instancechargetype
|
@@ -202,8 +206,10 @@ module TencentCloud
|
|
202
206
|
@Replicas = replicas
|
203
207
|
@InternetAccessible = internetaccessible
|
204
208
|
@DataDisks = datadisks
|
209
|
+
@QGPUEnable = qgpuenable
|
205
210
|
@KeyIds = keyids
|
206
211
|
@MachineType = machinetype
|
212
|
+
@AutomationService = automationservice
|
207
213
|
end
|
208
214
|
|
209
215
|
def deserialize(params)
|
@@ -254,8 +260,10 @@ module TencentCloud
|
|
254
260
|
@DataDisks << datadisk_tmp
|
255
261
|
end
|
256
262
|
end
|
263
|
+
@QGPUEnable = params['QGPUEnable']
|
257
264
|
@KeyIds = params['KeyIds']
|
258
265
|
@MachineType = params['MachineType']
|
266
|
+
@AutomationService = params['AutomationService']
|
259
267
|
end
|
260
268
|
end
|
261
269
|
|
@@ -277,7 +285,7 @@ module TencentCloud
|
|
277
285
|
# @type DeletionProtection: Boolean
|
278
286
|
# @param Unschedulable: 节点是否默认不可调度
|
279
287
|
# @type Unschedulable: Boolean
|
280
|
-
# @param Native:
|
288
|
+
# @param Native: 原生节点池创建参数(Type字段设置为Native时需填写)
|
281
289
|
# @type Native: :class:`Tencentcloud::Tke.v20220501.models.CreateNativeNodePoolParam`
|
282
290
|
# @param Annotations: 节点 Annotation 列表
|
283
291
|
# @type Annotations: Array
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tke
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1127
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|