tencentcloud.ContainerClusterInstance
Explore with Pulumi AI
Provides a TencentCloud Container Cluster Instance resource.
NOTE: It has been deprecated and replaced by tencentcloud_kubernetes_scale_worker.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const barInstance = new tencentcloud.ContainerClusterInstance("barInstance", {
bandwidth: 1,
bandwidthType: "PayByHour",
clusterId: "cls-abcdef",
cpu: 1,
cvmType: "PayByMonth",
dockerGraphPath: "",
instanceType: "CVM.S2",
isVpcGateway: 0,
mem: 1,
mountTarget: "/data",
password: "Admin12345678",
period: 1,
requireWanIp: 1,
rootSize: 50,
storageSize: 10,
subnetId: "subnet-abcdedf",
zoneId: "100004",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
bar_instance = tencentcloud.ContainerClusterInstance("barInstance",
bandwidth=1,
bandwidth_type="PayByHour",
cluster_id="cls-abcdef",
cpu=1,
cvm_type="PayByMonth",
docker_graph_path="",
instance_type="CVM.S2",
is_vpc_gateway=0,
mem=1,
mount_target="/data",
password="Admin12345678",
period=1,
require_wan_ip=1,
root_size=50,
storage_size=10,
subnet_id="subnet-abcdedf",
zone_id="100004")
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.NewContainerClusterInstance(ctx, "barInstance", &tencentcloud.ContainerClusterInstanceArgs{
Bandwidth: pulumi.Float64(1),
BandwidthType: pulumi.String("PayByHour"),
ClusterId: pulumi.String("cls-abcdef"),
Cpu: pulumi.Float64(1),
CvmType: pulumi.String("PayByMonth"),
DockerGraphPath: pulumi.String(""),
InstanceType: pulumi.String("CVM.S2"),
IsVpcGateway: pulumi.Float64(0),
Mem: pulumi.Float64(1),
MountTarget: pulumi.String("/data"),
Password: pulumi.String("Admin12345678"),
Period: pulumi.Float64(1),
RequireWanIp: pulumi.Float64(1),
RootSize: pulumi.Float64(50),
StorageSize: pulumi.Float64(10),
SubnetId: pulumi.String("subnet-abcdedf"),
ZoneId: pulumi.String("100004"),
})
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 barInstance = new Tencentcloud.ContainerClusterInstance("barInstance", new()
{
Bandwidth = 1,
BandwidthType = "PayByHour",
ClusterId = "cls-abcdef",
Cpu = 1,
CvmType = "PayByMonth",
DockerGraphPath = "",
InstanceType = "CVM.S2",
IsVpcGateway = 0,
Mem = 1,
MountTarget = "/data",
Password = "Admin12345678",
Period = 1,
RequireWanIp = 1,
RootSize = 50,
StorageSize = 10,
SubnetId = "subnet-abcdedf",
ZoneId = "100004",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.ContainerClusterInstance;
import com.pulumi.tencentcloud.ContainerClusterInstanceArgs;
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) {
var barInstance = new ContainerClusterInstance("barInstance", ContainerClusterInstanceArgs.builder()
.bandwidth(1)
.bandwidthType("PayByHour")
.clusterId("cls-abcdef")
.cpu(1)
.cvmType("PayByMonth")
.dockerGraphPath("")
.instanceType("CVM.S2")
.isVpcGateway(0)
.mem(1)
.mountTarget("/data")
.password("Admin12345678")
.period(1)
.requireWanIp(1)
.rootSize(50)
.storageSize(10)
.subnetId("subnet-abcdedf")
.zoneId(100004)
.build());
}
}
resources:
barInstance:
type: tencentcloud:ContainerClusterInstance
properties:
bandwidth: 1
bandwidthType: PayByHour
clusterId: cls-abcdef
cpu: 1
cvmType: PayByMonth
dockerGraphPath: ""
instanceType: CVM.S2
isVpcGateway: 0
mem: 1
mountTarget: /data
password: Admin12345678
period: 1
requireWanIp: 1
rootSize: 50
storageSize: 10
subnetId: subnet-abcdedf
zoneId: 100004
Create ContainerClusterInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ContainerClusterInstance(name: string, args: ContainerClusterInstanceArgs, opts?: CustomResourceOptions);
@overload
def ContainerClusterInstance(resource_name: str,
args: ContainerClusterInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ContainerClusterInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
is_vpc_gateway: Optional[float] = None,
bandwidth_type: Optional[str] = None,
cluster_id: Optional[str] = None,
zone_id: Optional[str] = None,
subnet_id: Optional[str] = None,
storage_size: Optional[float] = None,
root_size: Optional[float] = None,
bandwidth: Optional[float] = None,
mount_target: Optional[str] = None,
root_type: Optional[str] = None,
key_id: Optional[str] = None,
mem: Optional[float] = None,
instance_name: Optional[str] = None,
password: Optional[str] = None,
period: Optional[float] = None,
require_wan_ip: Optional[float] = None,
docker_graph_path: Optional[str] = None,
instance_type: Optional[str] = None,
sg_id: Optional[str] = None,
cvm_type: Optional[str] = None,
storage_type: Optional[str] = None,
cpu: Optional[float] = None,
unschedulable: Optional[float] = None,
user_script: Optional[str] = None,
container_cluster_instance_id: Optional[str] = None)
func NewContainerClusterInstance(ctx *Context, name string, args ContainerClusterInstanceArgs, opts ...ResourceOption) (*ContainerClusterInstance, error)
public ContainerClusterInstance(string name, ContainerClusterInstanceArgs args, CustomResourceOptions? opts = null)
public ContainerClusterInstance(String name, ContainerClusterInstanceArgs args)
public ContainerClusterInstance(String name, ContainerClusterInstanceArgs args, CustomResourceOptions options)
type: tencentcloud:ContainerClusterInstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ContainerClusterInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ContainerClusterInstanceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ContainerClusterInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContainerClusterInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ContainerClusterInstanceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ContainerClusterInstance Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ContainerClusterInstance resource accepts the following input properties:
- Bandwidth double
- The network bandwidth of the node.
- Bandwidth
Type string - The network type of the node.
- Cluster
Id string - The id of the cluster.
- Is
Vpc doubleGateway - Describe whether the node enable the gateway capability.
- Root
Size double - The size of the root volume.
- Storage
Size double - The size of the data volume.
- Subnet
Id string - The subnet id which the node stays in.
- Zone
Id string - The zone which the node stays in.
- Container
Cluster stringInstance Id - ID of the resource.
- Cpu double
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- Cvm
Type string - The type of node needed by cvm.
- Docker
Graph stringPath - The docker graph path is going to mounted.
- Instance
Name string - The name ot node.
- Instance
Type string - The instance type of the node needed by cvm.
- Key
Id string - The key_id of each node(if using key pair to access).
- Mem double
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- Mount
Target string - The path which volume is going to be mounted.
- Password string
- The password of each node.
- Period double
- The puchase duration of the node needed by cvm.
- Require
Wan doubleIp - Indicate whether wan ip is needed.
- Root
Type string - The type of the root volume. see more from CVM.
- Sg
Id string - The security group id.
- Storage
Type string - The type of the data volume. see more from CVM.
- Unschedulable double
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- User
Script string - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- Bandwidth float64
- The network bandwidth of the node.
- Bandwidth
Type string - The network type of the node.
- Cluster
Id string - The id of the cluster.
- Is
Vpc float64Gateway - Describe whether the node enable the gateway capability.
- Root
Size float64 - The size of the root volume.
- Storage
Size float64 - The size of the data volume.
- Subnet
Id string - The subnet id which the node stays in.
- Zone
Id string - The zone which the node stays in.
- Container
Cluster stringInstance Id - ID of the resource.
- Cpu float64
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- Cvm
Type string - The type of node needed by cvm.
- Docker
Graph stringPath - The docker graph path is going to mounted.
- Instance
Name string - The name ot node.
- Instance
Type string - The instance type of the node needed by cvm.
- Key
Id string - The key_id of each node(if using key pair to access).
- Mem float64
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- Mount
Target string - The path which volume is going to be mounted.
- Password string
- The password of each node.
- Period float64
- The puchase duration of the node needed by cvm.
- Require
Wan float64Ip - Indicate whether wan ip is needed.
- Root
Type string - The type of the root volume. see more from CVM.
- Sg
Id string - The security group id.
- Storage
Type string - The type of the data volume. see more from CVM.
- Unschedulable float64
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- User
Script string - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- bandwidth Double
- The network bandwidth of the node.
- bandwidth
Type String - The network type of the node.
- cluster
Id String - The id of the cluster.
- is
Vpc DoubleGateway - Describe whether the node enable the gateway capability.
- root
Size Double - The size of the root volume.
- storage
Size Double - The size of the data volume.
- subnet
Id String - The subnet id which the node stays in.
- zone
Id String - The zone which the node stays in.
- container
Cluster StringInstance Id - ID of the resource.
- cpu Double
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- cvm
Type String - The type of node needed by cvm.
- docker
Graph StringPath - The docker graph path is going to mounted.
- instance
Name String - The name ot node.
- instance
Type String - The instance type of the node needed by cvm.
- key
Id String - The key_id of each node(if using key pair to access).
- mem Double
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- mount
Target String - The path which volume is going to be mounted.
- password String
- The password of each node.
- period Double
- The puchase duration of the node needed by cvm.
- require
Wan DoubleIp - Indicate whether wan ip is needed.
- root
Type String - The type of the root volume. see more from CVM.
- sg
Id String - The security group id.
- storage
Type String - The type of the data volume. see more from CVM.
- unschedulable Double
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- user
Script String - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- bandwidth number
- The network bandwidth of the node.
- bandwidth
Type string - The network type of the node.
- cluster
Id string - The id of the cluster.
- is
Vpc numberGateway - Describe whether the node enable the gateway capability.
- root
Size number - The size of the root volume.
- storage
Size number - The size of the data volume.
- subnet
Id string - The subnet id which the node stays in.
- zone
Id string - The zone which the node stays in.
- container
Cluster stringInstance Id - ID of the resource.
- cpu number
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- cvm
Type string - The type of node needed by cvm.
- docker
Graph stringPath - The docker graph path is going to mounted.
- instance
Name string - The name ot node.
- instance
Type string - The instance type of the node needed by cvm.
- key
Id string - The key_id of each node(if using key pair to access).
- mem number
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- mount
Target string - The path which volume is going to be mounted.
- password string
- The password of each node.
- period number
- The puchase duration of the node needed by cvm.
- require
Wan numberIp - Indicate whether wan ip is needed.
- root
Type string - The type of the root volume. see more from CVM.
- sg
Id string - The security group id.
- storage
Type string - The type of the data volume. see more from CVM.
- unschedulable number
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- user
Script string - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- bandwidth float
- The network bandwidth of the node.
- bandwidth_
type str - The network type of the node.
- cluster_
id str - The id of the cluster.
- is_
vpc_ floatgateway - Describe whether the node enable the gateway capability.
- root_
size float - The size of the root volume.
- storage_
size float - The size of the data volume.
- subnet_
id str - The subnet id which the node stays in.
- zone_
id str - The zone which the node stays in.
- container_
cluster_ strinstance_ id - ID of the resource.
- cpu float
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- cvm_
type str - The type of node needed by cvm.
- docker_
graph_ strpath - The docker graph path is going to mounted.
- instance_
name str - The name ot node.
- instance_
type str - The instance type of the node needed by cvm.
- key_
id str - The key_id of each node(if using key pair to access).
- mem float
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- mount_
target str - The path which volume is going to be mounted.
- password str
- The password of each node.
- period float
- The puchase duration of the node needed by cvm.
- require_
wan_ floatip - Indicate whether wan ip is needed.
- root_
type str - The type of the root volume. see more from CVM.
- sg_
id str - The security group id.
- storage_
type str - The type of the data volume. see more from CVM.
- unschedulable float
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- user_
script str - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- bandwidth Number
- The network bandwidth of the node.
- bandwidth
Type String - The network type of the node.
- cluster
Id String - The id of the cluster.
- is
Vpc NumberGateway - Describe whether the node enable the gateway capability.
- root
Size Number - The size of the root volume.
- storage
Size Number - The size of the data volume.
- subnet
Id String - The subnet id which the node stays in.
- zone
Id String - The zone which the node stays in.
- container
Cluster StringInstance Id - ID of the resource.
- cpu Number
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- cvm
Type String - The type of node needed by cvm.
- docker
Graph StringPath - The docker graph path is going to mounted.
- instance
Name String - The name ot node.
- instance
Type String - The instance type of the node needed by cvm.
- key
Id String - The key_id of each node(if using key pair to access).
- mem Number
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- mount
Target String - The path which volume is going to be mounted.
- password String
- The password of each node.
- period Number
- The puchase duration of the node needed by cvm.
- require
Wan NumberIp - Indicate whether wan ip is needed.
- root
Type String - The type of the root volume. see more from CVM.
- sg
Id String - The security group id.
- storage
Type String - The type of the data volume. see more from CVM.
- unschedulable Number
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- user
Script String - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
Outputs
All input properties are implicitly available as output properties. Additionally, the ContainerClusterInstance resource produces the following output properties:
- Abnormal
Reason string - Describe the reason when node is in abnormal state(if it was).
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - An id identify the node, provided by cvm.
- Is
Normal double - Describe whether the node is normal.
- Lan
Ip string - Describe the lan ip of the node.
- Wan
Ip string - Describe the wan ip of the node.
- Abnormal
Reason string - Describe the reason when node is in abnormal state(if it was).
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - An id identify the node, provided by cvm.
- Is
Normal float64 - Describe whether the node is normal.
- Lan
Ip string - Describe the lan ip of the node.
- Wan
Ip string - Describe the wan ip of the node.
- abnormal
Reason String - Describe the reason when node is in abnormal state(if it was).
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - An id identify the node, provided by cvm.
- is
Normal Double - Describe whether the node is normal.
- lan
Ip String - Describe the lan ip of the node.
- wan
Ip String - Describe the wan ip of the node.
- abnormal
Reason string - Describe the reason when node is in abnormal state(if it was).
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Id string - An id identify the node, provided by cvm.
- is
Normal number - Describe whether the node is normal.
- lan
Ip string - Describe the lan ip of the node.
- wan
Ip string - Describe the wan ip of the node.
- abnormal_
reason str - Describe the reason when node is in abnormal state(if it was).
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
id str - An id identify the node, provided by cvm.
- is_
normal float - Describe whether the node is normal.
- lan_
ip str - Describe the lan ip of the node.
- wan_
ip str - Describe the wan ip of the node.
- abnormal
Reason String - Describe the reason when node is in abnormal state(if it was).
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - An id identify the node, provided by cvm.
- is
Normal Number - Describe whether the node is normal.
- lan
Ip String - Describe the lan ip of the node.
- wan
Ip String - Describe the wan ip of the node.
Look up Existing ContainerClusterInstance Resource
Get an existing ContainerClusterInstance resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ContainerClusterInstanceState, opts?: CustomResourceOptions): ContainerClusterInstance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
abnormal_reason: Optional[str] = None,
bandwidth: Optional[float] = None,
bandwidth_type: Optional[str] = None,
cluster_id: Optional[str] = None,
container_cluster_instance_id: Optional[str] = None,
cpu: Optional[float] = None,
cvm_type: Optional[str] = None,
docker_graph_path: Optional[str] = None,
instance_id: Optional[str] = None,
instance_name: Optional[str] = None,
instance_type: Optional[str] = None,
is_normal: Optional[float] = None,
is_vpc_gateway: Optional[float] = None,
key_id: Optional[str] = None,
lan_ip: Optional[str] = None,
mem: Optional[float] = None,
mount_target: Optional[str] = None,
password: Optional[str] = None,
period: Optional[float] = None,
require_wan_ip: Optional[float] = None,
root_size: Optional[float] = None,
root_type: Optional[str] = None,
sg_id: Optional[str] = None,
storage_size: Optional[float] = None,
storage_type: Optional[str] = None,
subnet_id: Optional[str] = None,
unschedulable: Optional[float] = None,
user_script: Optional[str] = None,
wan_ip: Optional[str] = None,
zone_id: Optional[str] = None) -> ContainerClusterInstance
func GetContainerClusterInstance(ctx *Context, name string, id IDInput, state *ContainerClusterInstanceState, opts ...ResourceOption) (*ContainerClusterInstance, error)
public static ContainerClusterInstance Get(string name, Input<string> id, ContainerClusterInstanceState? state, CustomResourceOptions? opts = null)
public static ContainerClusterInstance get(String name, Output<String> id, ContainerClusterInstanceState state, CustomResourceOptions options)
resources: _: type: tencentcloud:ContainerClusterInstance get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Abnormal
Reason string - Describe the reason when node is in abnormal state(if it was).
- Bandwidth double
- The network bandwidth of the node.
- Bandwidth
Type string - The network type of the node.
- Cluster
Id string - The id of the cluster.
- Container
Cluster stringInstance Id - ID of the resource.
- Cpu double
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- Cvm
Type string - The type of node needed by cvm.
- Docker
Graph stringPath - The docker graph path is going to mounted.
- Instance
Id string - An id identify the node, provided by cvm.
- Instance
Name string - The name ot node.
- Instance
Type string - The instance type of the node needed by cvm.
- Is
Normal double - Describe whether the node is normal.
- Is
Vpc doubleGateway - Describe whether the node enable the gateway capability.
- Key
Id string - The key_id of each node(if using key pair to access).
- Lan
Ip string - Describe the lan ip of the node.
- Mem double
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- Mount
Target string - The path which volume is going to be mounted.
- Password string
- The password of each node.
- Period double
- The puchase duration of the node needed by cvm.
- Require
Wan doubleIp - Indicate whether wan ip is needed.
- Root
Size double - The size of the root volume.
- Root
Type string - The type of the root volume. see more from CVM.
- Sg
Id string - The security group id.
- Storage
Size double - The size of the data volume.
- Storage
Type string - The type of the data volume. see more from CVM.
- Subnet
Id string - The subnet id which the node stays in.
- Unschedulable double
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- User
Script string - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- Wan
Ip string - Describe the wan ip of the node.
- Zone
Id string - The zone which the node stays in.
- Abnormal
Reason string - Describe the reason when node is in abnormal state(if it was).
- Bandwidth float64
- The network bandwidth of the node.
- Bandwidth
Type string - The network type of the node.
- Cluster
Id string - The id of the cluster.
- Container
Cluster stringInstance Id - ID of the resource.
- Cpu float64
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- Cvm
Type string - The type of node needed by cvm.
- Docker
Graph stringPath - The docker graph path is going to mounted.
- Instance
Id string - An id identify the node, provided by cvm.
- Instance
Name string - The name ot node.
- Instance
Type string - The instance type of the node needed by cvm.
- Is
Normal float64 - Describe whether the node is normal.
- Is
Vpc float64Gateway - Describe whether the node enable the gateway capability.
- Key
Id string - The key_id of each node(if using key pair to access).
- Lan
Ip string - Describe the lan ip of the node.
- Mem float64
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- Mount
Target string - The path which volume is going to be mounted.
- Password string
- The password of each node.
- Period float64
- The puchase duration of the node needed by cvm.
- Require
Wan float64Ip - Indicate whether wan ip is needed.
- Root
Size float64 - The size of the root volume.
- Root
Type string - The type of the root volume. see more from CVM.
- Sg
Id string - The security group id.
- Storage
Size float64 - The size of the data volume.
- Storage
Type string - The type of the data volume. see more from CVM.
- Subnet
Id string - The subnet id which the node stays in.
- Unschedulable float64
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- User
Script string - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- Wan
Ip string - Describe the wan ip of the node.
- Zone
Id string - The zone which the node stays in.
- abnormal
Reason String - Describe the reason when node is in abnormal state(if it was).
- bandwidth Double
- The network bandwidth of the node.
- bandwidth
Type String - The network type of the node.
- cluster
Id String - The id of the cluster.
- container
Cluster StringInstance Id - ID of the resource.
- cpu Double
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- cvm
Type String - The type of node needed by cvm.
- docker
Graph StringPath - The docker graph path is going to mounted.
- instance
Id String - An id identify the node, provided by cvm.
- instance
Name String - The name ot node.
- instance
Type String - The instance type of the node needed by cvm.
- is
Normal Double - Describe whether the node is normal.
- is
Vpc DoubleGateway - Describe whether the node enable the gateway capability.
- key
Id String - The key_id of each node(if using key pair to access).
- lan
Ip String - Describe the lan ip of the node.
- mem Double
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- mount
Target String - The path which volume is going to be mounted.
- password String
- The password of each node.
- period Double
- The puchase duration of the node needed by cvm.
- require
Wan DoubleIp - Indicate whether wan ip is needed.
- root
Size Double - The size of the root volume.
- root
Type String - The type of the root volume. see more from CVM.
- sg
Id String - The security group id.
- storage
Size Double - The size of the data volume.
- storage
Type String - The type of the data volume. see more from CVM.
- subnet
Id String - The subnet id which the node stays in.
- unschedulable Double
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- user
Script String - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- wan
Ip String - Describe the wan ip of the node.
- zone
Id String - The zone which the node stays in.
- abnormal
Reason string - Describe the reason when node is in abnormal state(if it was).
- bandwidth number
- The network bandwidth of the node.
- bandwidth
Type string - The network type of the node.
- cluster
Id string - The id of the cluster.
- container
Cluster stringInstance Id - ID of the resource.
- cpu number
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- cvm
Type string - The type of node needed by cvm.
- docker
Graph stringPath - The docker graph path is going to mounted.
- instance
Id string - An id identify the node, provided by cvm.
- instance
Name string - The name ot node.
- instance
Type string - The instance type of the node needed by cvm.
- is
Normal number - Describe whether the node is normal.
- is
Vpc numberGateway - Describe whether the node enable the gateway capability.
- key
Id string - The key_id of each node(if using key pair to access).
- lan
Ip string - Describe the lan ip of the node.
- mem number
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- mount
Target string - The path which volume is going to be mounted.
- password string
- The password of each node.
- period number
- The puchase duration of the node needed by cvm.
- require
Wan numberIp - Indicate whether wan ip is needed.
- root
Size number - The size of the root volume.
- root
Type string - The type of the root volume. see more from CVM.
- sg
Id string - The security group id.
- storage
Size number - The size of the data volume.
- storage
Type string - The type of the data volume. see more from CVM.
- subnet
Id string - The subnet id which the node stays in.
- unschedulable number
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- user
Script string - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- wan
Ip string - Describe the wan ip of the node.
- zone
Id string - The zone which the node stays in.
- abnormal_
reason str - Describe the reason when node is in abnormal state(if it was).
- bandwidth float
- The network bandwidth of the node.
- bandwidth_
type str - The network type of the node.
- cluster_
id str - The id of the cluster.
- container_
cluster_ strinstance_ id - ID of the resource.
- cpu float
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- cvm_
type str - The type of node needed by cvm.
- docker_
graph_ strpath - The docker graph path is going to mounted.
- instance_
id str - An id identify the node, provided by cvm.
- instance_
name str - The name ot node.
- instance_
type str - The instance type of the node needed by cvm.
- is_
normal float - Describe whether the node is normal.
- is_
vpc_ floatgateway - Describe whether the node enable the gateway capability.
- key_
id str - The key_id of each node(if using key pair to access).
- lan_
ip str - Describe the lan ip of the node.
- mem float
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- mount_
target str - The path which volume is going to be mounted.
- password str
- The password of each node.
- period float
- The puchase duration of the node needed by cvm.
- require_
wan_ floatip - Indicate whether wan ip is needed.
- root_
size float - The size of the root volume.
- root_
type str - The type of the root volume. see more from CVM.
- sg_
id str - The security group id.
- storage_
size float - The size of the data volume.
- storage_
type str - The type of the data volume. see more from CVM.
- subnet_
id str - The subnet id which the node stays in.
- unschedulable float
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- user_
script str - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- wan_
ip str - Describe the wan ip of the node.
- zone_
id str - The zone which the node stays in.
- abnormal
Reason String - Describe the reason when node is in abnormal state(if it was).
- bandwidth Number
- The network bandwidth of the node.
- bandwidth
Type String - The network type of the node.
- cluster
Id String - The id of the cluster.
- container
Cluster StringInstance Id - ID of the resource.
- cpu Number
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.
- cvm
Type String - The type of node needed by cvm.
- docker
Graph StringPath - The docker graph path is going to mounted.
- instance
Id String - An id identify the node, provided by cvm.
- instance
Name String - The name ot node.
- instance
Type String - The instance type of the node needed by cvm.
- is
Normal Number - Describe whether the node is normal.
- is
Vpc NumberGateway - Describe whether the node enable the gateway capability.
- key
Id String - The key_id of each node(if using key pair to access).
- lan
Ip String - Describe the lan ip of the node.
- mem Number
- It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.
- mount
Target String - The path which volume is going to be mounted.
- password String
- The password of each node.
- period Number
- The puchase duration of the node needed by cvm.
- require
Wan NumberIp - Indicate whether wan ip is needed.
- root
Size Number - The size of the root volume.
- root
Type String - The type of the root volume. see more from CVM.
- sg
Id String - The security group id.
- storage
Size Number - The size of the data volume.
- storage
Type String - The type of the data volume. see more from CVM.
- subnet
Id String - The subnet id which the node stays in.
- unschedulable Number
- Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
- user
Script String - User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
- wan
Ip String - Describe the wan ip of the node.
- zone
Id String - The zone which the node stays in.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.