tencentcloud 1.81.191 published on Friday, May 9, 2025 by tencentcloudstack
tencentcloud.getKubernetesClusterNodePools
Explore with Pulumi AI
tencentcloud 1.81.191 published on Friday, May 9, 2025 by tencentcloudstack
Use this data source to query detailed information of kubernetes cluster_node_pools
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const clusterNodePools = tencentcloud.getKubernetesClusterNodePools({
    clusterId: "cls-kzilgv5m",
    filters: [
        {
            name: "NodePoolsName",
            values: ["mynodepool_xxxx"],
        },
        {
            name: "NodePoolsId",
            values: ["np-ngjwhdv4"],
        },
    ],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
cluster_node_pools = tencentcloud.get_kubernetes_cluster_node_pools(cluster_id="cls-kzilgv5m",
    filters=[
        {
            "name": "NodePoolsName",
            "values": ["mynodepool_xxxx"],
        },
        {
            "name": "NodePoolsId",
            "values": ["np-ngjwhdv4"],
        },
    ])
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := tencentcloud.GetKubernetesClusterNodePools(ctx, &tencentcloud.GetKubernetesClusterNodePoolsArgs{
			ClusterId: "cls-kzilgv5m",
			Filters: []tencentcloud.GetKubernetesClusterNodePoolsFilter{
				{
					Name: "NodePoolsName",
					Values: []string{
						"mynodepool_xxxx",
					},
				},
				{
					Name: "NodePoolsId",
					Values: []string{
						"np-ngjwhdv4",
					},
				},
			},
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() => 
{
    var clusterNodePools = Tencentcloud.GetKubernetesClusterNodePools.Invoke(new()
    {
        ClusterId = "cls-kzilgv5m",
        Filters = new[]
        {
            new Tencentcloud.Inputs.GetKubernetesClusterNodePoolsFilterInputArgs
            {
                Name = "NodePoolsName",
                Values = new[]
                {
                    "mynodepool_xxxx",
                },
            },
            new Tencentcloud.Inputs.GetKubernetesClusterNodePoolsFilterInputArgs
            {
                Name = "NodePoolsId",
                Values = new[]
                {
                    "np-ngjwhdv4",
                },
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetKubernetesClusterNodePoolsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var clusterNodePools = TencentcloudFunctions.getKubernetesClusterNodePools(GetKubernetesClusterNodePoolsArgs.builder()
            .clusterId("cls-kzilgv5m")
            .filters(            
                GetKubernetesClusterNodePoolsFilterArgs.builder()
                    .name("NodePoolsName")
                    .values("mynodepool_xxxx")
                    .build(),
                GetKubernetesClusterNodePoolsFilterArgs.builder()
                    .name("NodePoolsId")
                    .values("np-ngjwhdv4")
                    .build())
            .build());
    }
}
variables:
  clusterNodePools:
    fn::invoke:
      function: tencentcloud:getKubernetesClusterNodePools
      arguments:
        clusterId: cls-kzilgv5m
        filters:
          - name: NodePoolsName
            values:
              - mynodepool_xxxx
          - name: NodePoolsId
            values:
              - np-ngjwhdv4
Using getKubernetesClusterNodePools
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getKubernetesClusterNodePools(args: GetKubernetesClusterNodePoolsArgs, opts?: InvokeOptions): Promise<GetKubernetesClusterNodePoolsResult>
function getKubernetesClusterNodePoolsOutput(args: GetKubernetesClusterNodePoolsOutputArgs, opts?: InvokeOptions): Output<GetKubernetesClusterNodePoolsResult>def get_kubernetes_cluster_node_pools(cluster_id: Optional[str] = None,
                                      filters: Optional[Sequence[GetKubernetesClusterNodePoolsFilter]] = None,
                                      id: Optional[str] = None,
                                      result_output_file: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetKubernetesClusterNodePoolsResult
def get_kubernetes_cluster_node_pools_output(cluster_id: Optional[pulumi.Input[str]] = None,
                                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetKubernetesClusterNodePoolsFilterArgs]]]] = None,
                                      id: Optional[pulumi.Input[str]] = None,
                                      result_output_file: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetKubernetesClusterNodePoolsResult]func GetKubernetesClusterNodePools(ctx *Context, args *GetKubernetesClusterNodePoolsArgs, opts ...InvokeOption) (*GetKubernetesClusterNodePoolsResult, error)
func GetKubernetesClusterNodePoolsOutput(ctx *Context, args *GetKubernetesClusterNodePoolsOutputArgs, opts ...InvokeOption) GetKubernetesClusterNodePoolsResultOutput> Note: This function is named GetKubernetesClusterNodePools in the Go SDK.
public static class GetKubernetesClusterNodePools 
{
    public static Task<GetKubernetesClusterNodePoolsResult> InvokeAsync(GetKubernetesClusterNodePoolsArgs args, InvokeOptions? opts = null)
    public static Output<GetKubernetesClusterNodePoolsResult> Invoke(GetKubernetesClusterNodePoolsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetKubernetesClusterNodePoolsResult> getKubernetesClusterNodePools(GetKubernetesClusterNodePoolsArgs args, InvokeOptions options)
public static Output<GetKubernetesClusterNodePoolsResult> getKubernetesClusterNodePools(GetKubernetesClusterNodePoolsArgs args, InvokeOptions options)
fn::invoke:
  function: tencentcloud:index/getKubernetesClusterNodePools:getKubernetesClusterNodePools
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ClusterId string
- ID of the cluster.
- Filters
List<GetKubernetes Cluster Node Pools Filter> 
- NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- Id string
- ResultOutput stringFile 
- Used to save results.
- ClusterId string
- ID of the cluster.
- Filters
[]GetKubernetes Cluster Node Pools Filter 
- NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- Id string
- ResultOutput stringFile 
- Used to save results.
- clusterId String
- ID of the cluster.
- filters
List<GetKubernetes Cluster Node Pools Filter> 
- NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- id String
- resultOutput StringFile 
- Used to save results.
- clusterId string
- ID of the cluster.
- filters
GetKubernetes Cluster Node Pools Filter[] 
- NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- id string
- resultOutput stringFile 
- Used to save results.
- cluster_id str
- ID of the cluster.
- filters
Sequence[GetKubernetes Cluster Node Pools Filter] 
- NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- id str
- result_output_ strfile 
- Used to save results.
- clusterId String
- ID of the cluster.
- filters List<Property Map>
- NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- id String
- resultOutput StringFile 
- Used to save results.
getKubernetesClusterNodePools Result
The following output properties are available:
- ClusterId string
- Id string
- NodePool List<GetSets Kubernetes Cluster Node Pools Node Pool Set> 
- Node Pool List.
- Filters
List<GetKubernetes Cluster Node Pools Filter> 
- ResultOutput stringFile 
- ClusterId string
- Id string
- NodePool []GetSets Kubernetes Cluster Node Pools Node Pool Set 
- Node Pool List.
- Filters
[]GetKubernetes Cluster Node Pools Filter 
- ResultOutput stringFile 
- clusterId String
- id String
- nodePool List<GetSets Kubernetes Cluster Node Pools Node Pool Set> 
- Node Pool List.
- filters
List<GetKubernetes Cluster Node Pools Filter> 
- resultOutput StringFile 
- clusterId string
- id string
- nodePool GetSets Kubernetes Cluster Node Pools Node Pool Set[] 
- Node Pool List.
- filters
GetKubernetes Cluster Node Pools Filter[] 
- resultOutput stringFile 
- clusterId String
- id String
- nodePool List<Property Map>Sets 
- Node Pool List.
- filters List<Property Map>
- resultOutput StringFile 
Supporting Types
GetKubernetesClusterNodePoolsFilter     
GetKubernetesClusterNodePoolsNodePoolSet       
- AutoscalingGroup stringId 
- ID of autoscaling group.
- AutoscalingGroup stringStatus 
- Status information.
- ClusterInstance stringId 
- ID of the cluster.
- DataDisks List<GetKubernetes Cluster Node Pools Node Pool Set Data Disk> 
- Multi disk data disk mounting information.
- DeletionProtection bool
- Remove protection switch.
- DesiredNodes doubleNum 
- Expected number of nodes.
- DesiredPod doubleNum 
- When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- DockerGraph stringPath 
- Dockerd --graph specified value, default to /var/lib/docker.
- ExtraArgs List<GetKubernetes Cluster Node Pools Node Pool Set Extra Arg> 
- Node configuration.
- GpuArgs List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg> 
- GPU driver related parameters.
- ImageId string
- ID of image.
- Labels
List<GetKubernetes Cluster Node Pools Node Pool Set Label> 
- Labels of the node pool.
- LaunchConfiguration stringId 
- ID of launch configuration.
- LifeState string
- Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- MaxNodes doubleNum 
- Maximum number of nodes.
- MinNodes doubleNum 
- Minimum number of nodes.
- Name string
- Name of the node pool.
- NodeCount List<GetSummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary> 
- Node List.
- NodePool stringId 
- ID of the node pool.
- NodePool stringOs 
- Node Pool OS Name.
- OsCustomize stringType 
- Mirror version of container.
- PreStart stringUser Script 
- User defined script, executed before User Script.
- 
List<GetKubernetes Cluster Node Pools Node Pool Set Tag> 
- Resource tags.
- Taints
List<GetKubernetes Cluster Node Pools Node Pool Set Taint> 
- Labels of the node pool.
- Unschedulable double
- Is it not schedulable.
- UserScript string
- User defined scripts.
- AutoscalingGroup stringId 
- ID of autoscaling group.
- AutoscalingGroup stringStatus 
- Status information.
- ClusterInstance stringId 
- ID of the cluster.
- DataDisks []GetKubernetes Cluster Node Pools Node Pool Set Data Disk 
- Multi disk data disk mounting information.
- DeletionProtection bool
- Remove protection switch.
- DesiredNodes float64Num 
- Expected number of nodes.
- DesiredPod float64Num 
- When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- DockerGraph stringPath 
- Dockerd --graph specified value, default to /var/lib/docker.
- ExtraArgs []GetKubernetes Cluster Node Pools Node Pool Set Extra Arg 
- Node configuration.
- GpuArgs []GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg 
- GPU driver related parameters.
- ImageId string
- ID of image.
- Labels
[]GetKubernetes Cluster Node Pools Node Pool Set Label 
- Labels of the node pool.
- LaunchConfiguration stringId 
- ID of launch configuration.
- LifeState string
- Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- MaxNodes float64Num 
- Maximum number of nodes.
- MinNodes float64Num 
- Minimum number of nodes.
- Name string
- Name of the node pool.
- NodeCount []GetSummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary 
- Node List.
- NodePool stringId 
- ID of the node pool.
- NodePool stringOs 
- Node Pool OS Name.
- OsCustomize stringType 
- Mirror version of container.
- PreStart stringUser Script 
- User defined script, executed before User Script.
- 
[]GetKubernetes Cluster Node Pools Node Pool Set Tag 
- Resource tags.
- Taints
[]GetKubernetes Cluster Node Pools Node Pool Set Taint 
- Labels of the node pool.
- Unschedulable float64
- Is it not schedulable.
- UserScript string
- User defined scripts.
- autoscalingGroup StringId 
- ID of autoscaling group.
- autoscalingGroup StringStatus 
- Status information.
- clusterInstance StringId 
- ID of the cluster.
- dataDisks List<GetKubernetes Cluster Node Pools Node Pool Set Data Disk> 
- Multi disk data disk mounting information.
- deletionProtection Boolean
- Remove protection switch.
- desiredNodes DoubleNum 
- Expected number of nodes.
- desiredPod DoubleNum 
- When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- dockerGraph StringPath 
- Dockerd --graph specified value, default to /var/lib/docker.
- extraArgs List<GetKubernetes Cluster Node Pools Node Pool Set Extra Arg> 
- Node configuration.
- gpuArgs List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg> 
- GPU driver related parameters.
- imageId String
- ID of image.
- labels
List<GetKubernetes Cluster Node Pools Node Pool Set Label> 
- Labels of the node pool.
- launchConfiguration StringId 
- ID of launch configuration.
- lifeState String
- Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- maxNodes DoubleNum 
- Maximum number of nodes.
- minNodes DoubleNum 
- Minimum number of nodes.
- name String
- Name of the node pool.
- nodeCount List<GetSummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary> 
- Node List.
- nodePool StringId 
- ID of the node pool.
- nodePool StringOs 
- Node Pool OS Name.
- osCustomize StringType 
- Mirror version of container.
- preStart StringUser Script 
- User defined script, executed before User Script.
- 
List<GetKubernetes Cluster Node Pools Node Pool Set Tag> 
- Resource tags.
- taints
List<GetKubernetes Cluster Node Pools Node Pool Set Taint> 
- Labels of the node pool.
- unschedulable Double
- Is it not schedulable.
- userScript String
- User defined scripts.
- autoscalingGroup stringId 
- ID of autoscaling group.
- autoscalingGroup stringStatus 
- Status information.
- clusterInstance stringId 
- ID of the cluster.
- dataDisks GetKubernetes Cluster Node Pools Node Pool Set Data Disk[] 
- Multi disk data disk mounting information.
- deletionProtection boolean
- Remove protection switch.
- desiredNodes numberNum 
- Expected number of nodes.
- desiredPod numberNum 
- When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- dockerGraph stringPath 
- Dockerd --graph specified value, default to /var/lib/docker.
- extraArgs GetKubernetes Cluster Node Pools Node Pool Set Extra Arg[] 
- Node configuration.
- gpuArgs GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg[] 
- GPU driver related parameters.
- imageId string
- ID of image.
- labels
GetKubernetes Cluster Node Pools Node Pool Set Label[] 
- Labels of the node pool.
- launchConfiguration stringId 
- ID of launch configuration.
- lifeState string
- Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- maxNodes numberNum 
- Maximum number of nodes.
- minNodes numberNum 
- Minimum number of nodes.
- name string
- Name of the node pool.
- nodeCount GetSummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary[] 
- Node List.
- nodePool stringId 
- ID of the node pool.
- nodePool stringOs 
- Node Pool OS Name.
- osCustomize stringType 
- Mirror version of container.
- preStart stringUser Script 
- User defined script, executed before User Script.
- 
GetKubernetes Cluster Node Pools Node Pool Set Tag[] 
- Resource tags.
- taints
GetKubernetes Cluster Node Pools Node Pool Set Taint[] 
- Labels of the node pool.
- unschedulable number
- Is it not schedulable.
- userScript string
- User defined scripts.
- autoscaling_group_ strid 
- ID of autoscaling group.
- autoscaling_group_ strstatus 
- Status information.
- cluster_instance_ strid 
- ID of the cluster.
- data_disks Sequence[GetKubernetes Cluster Node Pools Node Pool Set Data Disk] 
- Multi disk data disk mounting information.
- deletion_protection bool
- Remove protection switch.
- desired_nodes_ floatnum 
- Expected number of nodes.
- desired_pod_ floatnum 
- When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- docker_graph_ strpath 
- Dockerd --graph specified value, default to /var/lib/docker.
- extra_args Sequence[GetKubernetes Cluster Node Pools Node Pool Set Extra Arg] 
- Node configuration.
- gpu_args Sequence[GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg] 
- GPU driver related parameters.
- image_id str
- ID of image.
- labels
Sequence[GetKubernetes Cluster Node Pools Node Pool Set Label] 
- Labels of the node pool.
- launch_configuration_ strid 
- ID of launch configuration.
- life_state str
- Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- max_nodes_ floatnum 
- Maximum number of nodes.
- min_nodes_ floatnum 
- Minimum number of nodes.
- name str
- Name of the node pool.
- node_count_ Sequence[Getsummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary] 
- Node List.
- node_pool_ strid 
- ID of the node pool.
- node_pool_ stros 
- Node Pool OS Name.
- os_customize_ strtype 
- Mirror version of container.
- pre_start_ struser_ script 
- User defined script, executed before User Script.
- 
Sequence[GetKubernetes Cluster Node Pools Node Pool Set Tag] 
- Resource tags.
- taints
Sequence[GetKubernetes Cluster Node Pools Node Pool Set Taint] 
- Labels of the node pool.
- unschedulable float
- Is it not schedulable.
- user_script str
- User defined scripts.
- autoscalingGroup StringId 
- ID of autoscaling group.
- autoscalingGroup StringStatus 
- Status information.
- clusterInstance StringId 
- ID of the cluster.
- dataDisks List<Property Map>
- Multi disk data disk mounting information.
- deletionProtection Boolean
- Remove protection switch.
- desiredNodes NumberNum 
- Expected number of nodes.
- desiredPod NumberNum 
- When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- dockerGraph StringPath 
- Dockerd --graph specified value, default to /var/lib/docker.
- extraArgs List<Property Map>
- Node configuration.
- gpuArgs List<Property Map>
- GPU driver related parameters.
- imageId String
- ID of image.
- labels List<Property Map>
- Labels of the node pool.
- launchConfiguration StringId 
- ID of launch configuration.
- lifeState String
- Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- maxNodes NumberNum 
- Maximum number of nodes.
- minNodes NumberNum 
- Minimum number of nodes.
- name String
- Name of the node pool.
- nodeCount List<Property Map>Summaries 
- Node List.
- nodePool StringId 
- ID of the node pool.
- nodePool StringOs 
- Node Pool OS Name.
- osCustomize StringType 
- Mirror version of container.
- preStart StringUser Script 
- User defined script, executed before User Script.
- List<Property Map>
- Resource tags.
- taints List<Property Map>
- Labels of the node pool.
- unschedulable Number
- Is it not schedulable.
- userScript String
- User defined scripts.
GetKubernetesClusterNodePoolsNodePoolSetDataDisk         
- AutoFormat boolAnd Mount 
- Whether to automate the format disk and mount it.
- DiskPartition string
- Mount device name or partition name.
- DiskSize double
- Cloud disk size(G).
- DiskType string
- Cloud disk type.
- FileSystem string
- File system(ext3/ext4/xfs).
- MountTarget string
- Mount directory.
- AutoFormat boolAnd Mount 
- Whether to automate the format disk and mount it.
- DiskPartition string
- Mount device name or partition name.
- DiskSize float64
- Cloud disk size(G).
- DiskType string
- Cloud disk type.
- FileSystem string
- File system(ext3/ext4/xfs).
- MountTarget string
- Mount directory.
- autoFormat BooleanAnd Mount 
- Whether to automate the format disk and mount it.
- diskPartition String
- Mount device name or partition name.
- diskSize Double
- Cloud disk size(G).
- diskType String
- Cloud disk type.
- fileSystem String
- File system(ext3/ext4/xfs).
- mountTarget String
- Mount directory.
- autoFormat booleanAnd Mount 
- Whether to automate the format disk and mount it.
- diskPartition string
- Mount device name or partition name.
- diskSize number
- Cloud disk size(G).
- diskType string
- Cloud disk type.
- fileSystem string
- File system(ext3/ext4/xfs).
- mountTarget string
- Mount directory.
- auto_format_ booland_ mount 
- Whether to automate the format disk and mount it.
- disk_partition str
- Mount device name or partition name.
- disk_size float
- Cloud disk size(G).
- disk_type str
- Cloud disk type.
- file_system str
- File system(ext3/ext4/xfs).
- mount_target str
- Mount directory.
- autoFormat BooleanAnd Mount 
- Whether to automate the format disk and mount it.
- diskPartition String
- Mount device name or partition name.
- diskSize Number
- Cloud disk size(G).
- diskType String
- Cloud disk type.
- fileSystem String
- File system(ext3/ext4/xfs).
- mountTarget String
- Mount directory.
GetKubernetesClusterNodePoolsNodePoolSetExtraArg         
- Kubelets List<string>
- Kubelet custom parameters.
- Kubelets []string
- Kubelet custom parameters.
- kubelets List<String>
- Kubelet custom parameters.
- kubelets string[]
- Kubelet custom parameters.
- kubelets Sequence[str]
- Kubelet custom parameters.
- kubelets List<String>
- Kubelet custom parameters.
GetKubernetesClusterNodePoolsNodePoolSetGpuArg         
- Cudas
List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda> 
- CUDA version information.
- Cudnns
List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn> 
- CuDNN version information.
- CustomDrivers List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver> 
- Custom GPU driver information.
- Drivers
List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver> 
- GPU driver version information.
- MigEnable bool
- Is the MIG feature enabled.
- Cudas
[]GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda 
- CUDA version information.
- Cudnns
[]GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn 
- CuDNN version information.
- CustomDrivers []GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver 
- Custom GPU driver information.
- Drivers
[]GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver 
- GPU driver version information.
- MigEnable bool
- Is the MIG feature enabled.
- cudas
List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda> 
- CUDA version information.
- cudnns
List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn> 
- CuDNN version information.
- customDrivers List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver> 
- Custom GPU driver information.
- drivers
List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver> 
- GPU driver version information.
- migEnable Boolean
- Is the MIG feature enabled.
- cudas
GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda[] 
- CUDA version information.
- cudnns
GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn[] 
- CuDNN version information.
- customDrivers GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver[] 
- Custom GPU driver information.
- drivers
GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver[] 
- GPU driver version information.
- migEnable boolean
- Is the MIG feature enabled.
- cudas
Sequence[GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda] 
- CUDA version information.
- cudnns
Sequence[GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn] 
- CuDNN version information.
- custom_drivers Sequence[GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver] 
- Custom GPU driver information.
- drivers
Sequence[GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver] 
- GPU driver version information.
- mig_enable bool
- Is the MIG feature enabled.
- cudas List<Property Map>
- CUDA version information.
- cudnns List<Property Map>
- CuDNN version information.
- customDrivers List<Property Map>
- Custom GPU driver information.
- drivers List<Property Map>
- GPU driver version information.
- migEnable Boolean
- Is the MIG feature enabled.
GetKubernetesClusterNodePoolsNodePoolSetGpuArgCuda          
GetKubernetesClusterNodePoolsNodePoolSetGpuArgCudnn          
GetKubernetesClusterNodePoolsNodePoolSetGpuArgCustomDriver           
- Address string
- Custom GPU driver address link.
- Address string
- Custom GPU driver address link.
- address String
- Custom GPU driver address link.
- address string
- Custom GPU driver address link.
- address str
- Custom GPU driver address link.
- address String
- Custom GPU driver address link.
GetKubernetesClusterNodePoolsNodePoolSetGpuArgDriver          
GetKubernetesClusterNodePoolsNodePoolSetLabel        
GetKubernetesClusterNodePoolsNodePoolSetNodeCountSummary          
- AutoscalingAddeds List<GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added> 
- Automatically managed nodes.
- ManuallyAddeds List<GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added> 
- Manually managed nodes.
- AutoscalingAddeds []GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added 
- Automatically managed nodes.
- ManuallyAddeds []GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added 
- Manually managed nodes.
- autoscalingAddeds List<GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added> 
- Automatically managed nodes.
- manuallyAddeds List<GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added> 
- Manually managed nodes.
- autoscalingAddeds GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added[] 
- Automatically managed nodes.
- manuallyAddeds GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added[] 
- Manually managed nodes.
- autoscaling_addeds Sequence[GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added] 
- Automatically managed nodes.
- manually_addeds Sequence[GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added] 
- Manually managed nodes.
- autoscalingAddeds List<Property Map>
- Automatically managed nodes.
- manuallyAddeds List<Property Map>
- Manually managed nodes.
GetKubernetesClusterNodePoolsNodePoolSetNodeCountSummaryAutoscalingAdded            
- Initializing double
- Number of nodes in initialization.
- Joining double
- Number of nodes joining.
- Normal double
- Normal number of nodes.
- Total double
- Total number of nodes.
- Initializing float64
- Number of nodes in initialization.
- Joining float64
- Number of nodes joining.
- Normal float64
- Normal number of nodes.
- Total float64
- Total number of nodes.
- initializing Double
- Number of nodes in initialization.
- joining Double
- Number of nodes joining.
- normal Double
- Normal number of nodes.
- total Double
- Total number of nodes.
- initializing number
- Number of nodes in initialization.
- joining number
- Number of nodes joining.
- normal number
- Normal number of nodes.
- total number
- Total number of nodes.
- initializing float
- Number of nodes in initialization.
- joining float
- Number of nodes joining.
- normal float
- Normal number of nodes.
- total float
- Total number of nodes.
- initializing Number
- Number of nodes in initialization.
- joining Number
- Number of nodes joining.
- normal Number
- Normal number of nodes.
- total Number
- Total number of nodes.
GetKubernetesClusterNodePoolsNodePoolSetNodeCountSummaryManuallyAdded            
- Initializing double
- Number of nodes in initialization.
- Joining double
- Number of nodes joining.
- Normal double
- Normal number of nodes.
- Total double
- Total number of nodes.
- Initializing float64
- Number of nodes in initialization.
- Joining float64
- Number of nodes joining.
- Normal float64
- Normal number of nodes.
- Total float64
- Total number of nodes.
- initializing Double
- Number of nodes in initialization.
- joining Double
- Number of nodes joining.
- normal Double
- Normal number of nodes.
- total Double
- Total number of nodes.
- initializing number
- Number of nodes in initialization.
- joining number
- Number of nodes joining.
- normal number
- Normal number of nodes.
- total number
- Total number of nodes.
- initializing float
- Number of nodes in initialization.
- joining float
- Number of nodes joining.
- normal float
- Normal number of nodes.
- total float
- Total number of nodes.
- initializing Number
- Number of nodes in initialization.
- joining Number
- Number of nodes joining.
- normal Number
- Normal number of nodes.
- total Number
- Total number of nodes.
GetKubernetesClusterNodePoolsNodePoolSetTag        
GetKubernetesClusterNodePoolsNodePoolSetTaint        
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the tencentcloudTerraform Provider.
tencentcloud 1.81.191 published on Friday, May 9, 2025 by tencentcloudstack