1. Packages
  2. Civo Provider
  3. API Docs
  4. KubernetesNodePool
civo 1.1.5 published on Thursday, Feb 6, 2025 by civo

civo.KubernetesNodePool

Explore with Pulumi AI

civo logo
civo 1.1.5 published on Thursday, Feb 6, 2025 by civo

    Import

    $ pulumi import civo:index/kubernetesNodePool:KubernetesNodePool my-pool 1b8b2100-0e9f-4e8f-ad78-9eb578c2a0af:502c1130-cb9b-4a88-b6d2-307bd96d946a
    

    Create KubernetesNodePool Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new KubernetesNodePool(name: string, args: KubernetesNodePoolArgs, opts?: CustomResourceOptions);
    @overload
    def KubernetesNodePool(resource_name: str,
                           args: KubernetesNodePoolArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def KubernetesNodePool(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           cluster_id: Optional[str] = None,
                           node_count: Optional[float] = None,
                           size: Optional[str] = None,
                           kubernetes_node_pool_id: Optional[str] = None,
                           label: Optional[str] = None,
                           labels: Optional[Mapping[str, str]] = None,
                           public_ip_node_pool: Optional[bool] = None,
                           taints: Optional[Sequence[KubernetesNodePoolTaintArgs]] = None,
                           timeouts: Optional[KubernetesNodePoolTimeoutsArgs] = None)
    func NewKubernetesNodePool(ctx *Context, name string, args KubernetesNodePoolArgs, opts ...ResourceOption) (*KubernetesNodePool, error)
    public KubernetesNodePool(string name, KubernetesNodePoolArgs args, CustomResourceOptions? opts = null)
    public KubernetesNodePool(String name, KubernetesNodePoolArgs args)
    public KubernetesNodePool(String name, KubernetesNodePoolArgs args, CustomResourceOptions options)
    
    type: civo:KubernetesNodePool
    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 KubernetesNodePoolArgs
    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 KubernetesNodePoolArgs
    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 KubernetesNodePoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KubernetesNodePoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KubernetesNodePoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var kubernetesNodePoolResource = new Civo.KubernetesNodePool("kubernetesNodePoolResource", new()
    {
        ClusterId = "string",
        NodeCount = 0,
        Size = "string",
        KubernetesNodePoolId = "string",
        Label = "string",
        Labels = 
        {
            { "string", "string" },
        },
        PublicIpNodePool = false,
        Taints = new[]
        {
            new Civo.Inputs.KubernetesNodePoolTaintArgs
            {
                Effect = "string",
                Key = "string",
                Value = "string",
            },
        },
        Timeouts = new Civo.Inputs.KubernetesNodePoolTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := civo.NewKubernetesNodePool(ctx, "kubernetesNodePoolResource", &civo.KubernetesNodePoolArgs{
    ClusterId: pulumi.String("string"),
    NodeCount: pulumi.Float64(0),
    Size: pulumi.String("string"),
    KubernetesNodePoolId: pulumi.String("string"),
    Label: pulumi.String("string"),
    Labels: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    PublicIpNodePool: pulumi.Bool(false),
    Taints: .KubernetesNodePoolTaintArray{
    &.KubernetesNodePoolTaintArgs{
    Effect: pulumi.String("string"),
    Key: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Timeouts: &.KubernetesNodePoolTimeoutsArgs{
    Create: pulumi.String("string"),
    Delete: pulumi.String("string"),
    Update: pulumi.String("string"),
    },
    })
    
    var kubernetesNodePoolResource = new KubernetesNodePool("kubernetesNodePoolResource", KubernetesNodePoolArgs.builder()
        .clusterId("string")
        .nodeCount(0)
        .size("string")
        .kubernetesNodePoolId("string")
        .label("string")
        .labels(Map.of("string", "string"))
        .publicIpNodePool(false)
        .taints(KubernetesNodePoolTaintArgs.builder()
            .effect("string")
            .key("string")
            .value("string")
            .build())
        .timeouts(KubernetesNodePoolTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    kubernetes_node_pool_resource = civo.KubernetesNodePool("kubernetesNodePoolResource",
        cluster_id="string",
        node_count=0,
        size="string",
        kubernetes_node_pool_id="string",
        label="string",
        labels={
            "string": "string",
        },
        public_ip_node_pool=False,
        taints=[{
            "effect": "string",
            "key": "string",
            "value": "string",
        }],
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const kubernetesNodePoolResource = new civo.KubernetesNodePool("kubernetesNodePoolResource", {
        clusterId: "string",
        nodeCount: 0,
        size: "string",
        kubernetesNodePoolId: "string",
        label: "string",
        labels: {
            string: "string",
        },
        publicIpNodePool: false,
        taints: [{
            effect: "string",
            key: "string",
            value: "string",
        }],
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: civo:KubernetesNodePool
    properties:
        clusterId: string
        kubernetesNodePoolId: string
        label: string
        labels:
            string: string
        nodeCount: 0
        publicIpNodePool: false
        size: string
        taints:
            - effect: string
              key: string
              value: string
        timeouts:
            create: string
            delete: string
            update: string
    

    KubernetesNodePool 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 KubernetesNodePool resource accepts the following input properties:

    ClusterId string
    The ID of your cluster
    NodeCount double
    Number of nodes in the nodepool
    Size string
    Size of the nodes in the nodepool
    KubernetesNodePoolId string
    The ID of this resource.
    Label string
    Node pool label, if you don't provide one, we will generate one for you
    Labels Dictionary<string, string>
    PublicIpNodePool bool
    Node pool belongs to the public ip node pool
    Taints List<KubernetesNodePoolTaint>
    Timeouts KubernetesNodePoolTimeouts
    ClusterId string
    The ID of your cluster
    NodeCount float64
    Number of nodes in the nodepool
    Size string
    Size of the nodes in the nodepool
    KubernetesNodePoolId string
    The ID of this resource.
    Label string
    Node pool label, if you don't provide one, we will generate one for you
    Labels map[string]string
    PublicIpNodePool bool
    Node pool belongs to the public ip node pool
    Taints []KubernetesNodePoolTaintArgs
    Timeouts KubernetesNodePoolTimeoutsArgs
    clusterId String
    The ID of your cluster
    nodeCount Double
    Number of nodes in the nodepool
    size String
    Size of the nodes in the nodepool
    kubernetesNodePoolId String
    The ID of this resource.
    label String
    Node pool label, if you don't provide one, we will generate one for you
    labels Map<String,String>
    publicIpNodePool Boolean
    Node pool belongs to the public ip node pool
    taints List<KubernetesNodePoolTaint>
    timeouts KubernetesNodePoolTimeouts
    clusterId string
    The ID of your cluster
    nodeCount number
    Number of nodes in the nodepool
    size string
    Size of the nodes in the nodepool
    kubernetesNodePoolId string
    The ID of this resource.
    label string
    Node pool label, if you don't provide one, we will generate one for you
    labels {[key: string]: string}
    publicIpNodePool boolean
    Node pool belongs to the public ip node pool
    taints KubernetesNodePoolTaint[]
    timeouts KubernetesNodePoolTimeouts
    cluster_id str
    The ID of your cluster
    node_count float
    Number of nodes in the nodepool
    size str
    Size of the nodes in the nodepool
    kubernetes_node_pool_id str
    The ID of this resource.
    label str
    Node pool label, if you don't provide one, we will generate one for you
    labels Mapping[str, str]
    public_ip_node_pool bool
    Node pool belongs to the public ip node pool
    taints Sequence[KubernetesNodePoolTaintArgs]
    timeouts KubernetesNodePoolTimeoutsArgs
    clusterId String
    The ID of your cluster
    nodeCount Number
    Number of nodes in the nodepool
    size String
    Size of the nodes in the nodepool
    kubernetesNodePoolId String
    The ID of this resource.
    label String
    Node pool label, if you don't provide one, we will generate one for you
    labels Map<String>
    publicIpNodePool Boolean
    Node pool belongs to the public ip node pool
    taints List<Property Map>
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the KubernetesNodePool resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceNames List<string>
    Instance names in the nodepool
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceNames []string
    Instance names in the nodepool
    id String
    The provider-assigned unique ID for this managed resource.
    instanceNames List<String>
    Instance names in the nodepool
    id string
    The provider-assigned unique ID for this managed resource.
    instanceNames string[]
    Instance names in the nodepool
    id str
    The provider-assigned unique ID for this managed resource.
    instance_names Sequence[str]
    Instance names in the nodepool
    id String
    The provider-assigned unique ID for this managed resource.
    instanceNames List<String>
    Instance names in the nodepool

    Look up Existing KubernetesNodePool Resource

    Get an existing KubernetesNodePool 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?: KubernetesNodePoolState, opts?: CustomResourceOptions): KubernetesNodePool
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_id: Optional[str] = None,
            instance_names: Optional[Sequence[str]] = None,
            kubernetes_node_pool_id: Optional[str] = None,
            label: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            node_count: Optional[float] = None,
            public_ip_node_pool: Optional[bool] = None,
            size: Optional[str] = None,
            taints: Optional[Sequence[KubernetesNodePoolTaintArgs]] = None,
            timeouts: Optional[KubernetesNodePoolTimeoutsArgs] = None) -> KubernetesNodePool
    func GetKubernetesNodePool(ctx *Context, name string, id IDInput, state *KubernetesNodePoolState, opts ...ResourceOption) (*KubernetesNodePool, error)
    public static KubernetesNodePool Get(string name, Input<string> id, KubernetesNodePoolState? state, CustomResourceOptions? opts = null)
    public static KubernetesNodePool get(String name, Output<String> id, KubernetesNodePoolState state, CustomResourceOptions options)
    resources:  _:    type: civo:KubernetesNodePool    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.
    The following state arguments are supported:
    ClusterId string
    The ID of your cluster
    InstanceNames List<string>
    Instance names in the nodepool
    KubernetesNodePoolId string
    The ID of this resource.
    Label string
    Node pool label, if you don't provide one, we will generate one for you
    Labels Dictionary<string, string>
    NodeCount double
    Number of nodes in the nodepool
    PublicIpNodePool bool
    Node pool belongs to the public ip node pool
    Size string
    Size of the nodes in the nodepool
    Taints List<KubernetesNodePoolTaint>
    Timeouts KubernetesNodePoolTimeouts
    ClusterId string
    The ID of your cluster
    InstanceNames []string
    Instance names in the nodepool
    KubernetesNodePoolId string
    The ID of this resource.
    Label string
    Node pool label, if you don't provide one, we will generate one for you
    Labels map[string]string
    NodeCount float64
    Number of nodes in the nodepool
    PublicIpNodePool bool
    Node pool belongs to the public ip node pool
    Size string
    Size of the nodes in the nodepool
    Taints []KubernetesNodePoolTaintArgs
    Timeouts KubernetesNodePoolTimeoutsArgs
    clusterId String
    The ID of your cluster
    instanceNames List<String>
    Instance names in the nodepool
    kubernetesNodePoolId String
    The ID of this resource.
    label String
    Node pool label, if you don't provide one, we will generate one for you
    labels Map<String,String>
    nodeCount Double
    Number of nodes in the nodepool
    publicIpNodePool Boolean
    Node pool belongs to the public ip node pool
    size String
    Size of the nodes in the nodepool
    taints List<KubernetesNodePoolTaint>
    timeouts KubernetesNodePoolTimeouts
    clusterId string
    The ID of your cluster
    instanceNames string[]
    Instance names in the nodepool
    kubernetesNodePoolId string
    The ID of this resource.
    label string
    Node pool label, if you don't provide one, we will generate one for you
    labels {[key: string]: string}
    nodeCount number
    Number of nodes in the nodepool
    publicIpNodePool boolean
    Node pool belongs to the public ip node pool
    size string
    Size of the nodes in the nodepool
    taints KubernetesNodePoolTaint[]
    timeouts KubernetesNodePoolTimeouts
    cluster_id str
    The ID of your cluster
    instance_names Sequence[str]
    Instance names in the nodepool
    kubernetes_node_pool_id str
    The ID of this resource.
    label str
    Node pool label, if you don't provide one, we will generate one for you
    labels Mapping[str, str]
    node_count float
    Number of nodes in the nodepool
    public_ip_node_pool bool
    Node pool belongs to the public ip node pool
    size str
    Size of the nodes in the nodepool
    taints Sequence[KubernetesNodePoolTaintArgs]
    timeouts KubernetesNodePoolTimeoutsArgs
    clusterId String
    The ID of your cluster
    instanceNames List<String>
    Instance names in the nodepool
    kubernetesNodePoolId String
    The ID of this resource.
    label String
    Node pool label, if you don't provide one, we will generate one for you
    labels Map<String>
    nodeCount Number
    Number of nodes in the nodepool
    publicIpNodePool Boolean
    Node pool belongs to the public ip node pool
    size String
    Size of the nodes in the nodepool
    taints List<Property Map>
    timeouts Property Map

    Supporting Types

    KubernetesNodePoolTaint, KubernetesNodePoolTaintArgs

    Effect string
    Key string
    Value string
    Effect string
    Key string
    Value string
    effect String
    key String
    value String
    effect string
    key string
    value string
    effect str
    key str
    value str
    effect String
    key String
    value String

    KubernetesNodePoolTimeouts, KubernetesNodePoolTimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Package Details

    Repository
    Civo civo/terraform-provider-civo
    License
    Notes
    This Pulumi package is based on the civo Terraform Provider.
    civo logo
    civo 1.1.5 published on Thursday, Feb 6, 2025 by civo