digitalocean logo
DigitalOcean v4.19.3, May 24 23

digitalocean.KubernetesNodePool

Explore with Pulumi AI

Provides a DigitalOcean Kubernetes node pool resource. While the default node pool must be defined in the digitalocean.KubernetesCluster resource, this resource can be used to add additional ones to a cluster.

Example Usage

Basic Example

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using DigitalOcean = Pulumi.DigitalOcean;

return await Deployment.RunAsync(() => 
{
    var foo = new DigitalOcean.KubernetesCluster("foo", new()
    {
        Region = "nyc1",
        Version = "1.22.8-do.1",
        NodePool = new DigitalOcean.Inputs.KubernetesClusterNodePoolArgs
        {
            Name = "front-end-pool",
            Size = "s-2vcpu-2gb",
            NodeCount = 3,
        },
    });

    var bar = new DigitalOcean.KubernetesNodePool("bar", new()
    {
        ClusterId = foo.Id,
        Size = "c-2",
        NodeCount = 2,
        Tags = new[]
        {
            "backend",
        },
        Labels = 
        {
            { "service", "backend" },
            { "priority", "high" },
        },
        Taints = new[]
        {
            new DigitalOcean.Inputs.KubernetesNodePoolTaintArgs
            {
                Key = "workloadKind",
                Value = "database",
                Effect = "NoSchedule",
            },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		foo, err := digitalocean.NewKubernetesCluster(ctx, "foo", &digitalocean.KubernetesClusterArgs{
			Region:  pulumi.String("nyc1"),
			Version: pulumi.String("1.22.8-do.1"),
			NodePool: &digitalocean.KubernetesClusterNodePoolArgs{
				Name:      pulumi.String("front-end-pool"),
				Size:      pulumi.String("s-2vcpu-2gb"),
				NodeCount: pulumi.Int(3),
			},
		})
		if err != nil {
			return err
		}
		_, err = digitalocean.NewKubernetesNodePool(ctx, "bar", &digitalocean.KubernetesNodePoolArgs{
			ClusterId: foo.ID(),
			Size:      pulumi.String("c-2"),
			NodeCount: pulumi.Int(2),
			Tags: pulumi.StringArray{
				pulumi.String("backend"),
			},
			Labels: pulumi.StringMap{
				"service":  pulumi.String("backend"),
				"priority": pulumi.String("high"),
			},
			Taints: digitalocean.KubernetesNodePoolTaintArray{
				&digitalocean.KubernetesNodePoolTaintArgs{
					Key:    pulumi.String("workloadKind"),
					Value:  pulumi.String("database"),
					Effect: pulumi.String("NoSchedule"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.digitalocean.KubernetesCluster;
import com.pulumi.digitalocean.KubernetesClusterArgs;
import com.pulumi.digitalocean.inputs.KubernetesClusterNodePoolArgs;
import com.pulumi.digitalocean.KubernetesNodePool;
import com.pulumi.digitalocean.KubernetesNodePoolArgs;
import com.pulumi.digitalocean.inputs.KubernetesNodePoolTaintArgs;
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 foo = new KubernetesCluster("foo", KubernetesClusterArgs.builder()        
            .region("nyc1")
            .version("1.22.8-do.1")
            .nodePool(KubernetesClusterNodePoolArgs.builder()
                .name("front-end-pool")
                .size("s-2vcpu-2gb")
                .nodeCount(3)
                .build())
            .build());

        var bar = new KubernetesNodePool("bar", KubernetesNodePoolArgs.builder()        
            .clusterId(foo.id())
            .size("c-2")
            .nodeCount(2)
            .tags("backend")
            .labels(Map.ofEntries(
                Map.entry("service", "backend"),
                Map.entry("priority", "high")
            ))
            .taints(KubernetesNodePoolTaintArgs.builder()
                .key("workloadKind")
                .value("database")
                .effect("NoSchedule")
                .build())
            .build());

    }
}
import pulumi
import pulumi_digitalocean as digitalocean

foo = digitalocean.KubernetesCluster("foo",
    region="nyc1",
    version="1.22.8-do.1",
    node_pool=digitalocean.KubernetesClusterNodePoolArgs(
        name="front-end-pool",
        size="s-2vcpu-2gb",
        node_count=3,
    ))
bar = digitalocean.KubernetesNodePool("bar",
    cluster_id=foo.id,
    size="c-2",
    node_count=2,
    tags=["backend"],
    labels={
        "service": "backend",
        "priority": "high",
    },
    taints=[digitalocean.KubernetesNodePoolTaintArgs(
        key="workloadKind",
        value="database",
        effect="NoSchedule",
    )])
import * as pulumi from "@pulumi/pulumi";
import * as digitalocean from "@pulumi/digitalocean";

const foo = new digitalocean.KubernetesCluster("foo", {
    region: "nyc1",
    version: "1.22.8-do.1",
    nodePool: {
        name: "front-end-pool",
        size: "s-2vcpu-2gb",
        nodeCount: 3,
    },
});
const bar = new digitalocean.KubernetesNodePool("bar", {
    clusterId: foo.id,
    size: "c-2",
    nodeCount: 2,
    tags: ["backend"],
    labels: {
        service: "backend",
        priority: "high",
    },
    taints: [{
        key: "workloadKind",
        value: "database",
        effect: "NoSchedule",
    }],
});
resources:
  foo:
    type: digitalocean:KubernetesCluster
    properties:
      region: nyc1
      version: 1.22.8-do.1
      nodePool:
        name: front-end-pool
        size: s-2vcpu-2gb
        nodeCount: 3
  bar:
    type: digitalocean:KubernetesNodePool
    properties:
      clusterId: ${foo.id}
      size: c-2
      nodeCount: 2
      tags:
        - backend
      labels:
        service: backend
        priority: high
      taints:
        - key: workloadKind
          value: database
          effect: NoSchedule

Autoscaling Example

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using DigitalOcean = Pulumi.DigitalOcean;

return await Deployment.RunAsync(() => 
{
    var autoscale_pool_01 = new DigitalOcean.KubernetesNodePool("autoscale-pool-01", new()
    {
        ClusterId = digitalocean_kubernetes_cluster.Foo.Id,
        Size = "s-1vcpu-2gb",
        AutoScale = true,
        MinNodes = 1,
        MaxNodes = 5,
    });

});
package main

import (
	"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := digitalocean.NewKubernetesNodePool(ctx, "autoscale-pool-01", &digitalocean.KubernetesNodePoolArgs{
			ClusterId: pulumi.Any(digitalocean_kubernetes_cluster.Foo.Id),
			Size:      pulumi.String("s-1vcpu-2gb"),
			AutoScale: pulumi.Bool(true),
			MinNodes:  pulumi.Int(1),
			MaxNodes:  pulumi.Int(5),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.digitalocean.KubernetesNodePool;
import com.pulumi.digitalocean.KubernetesNodePoolArgs;
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 autoscale_pool_01 = new KubernetesNodePool("autoscale-pool-01", KubernetesNodePoolArgs.builder()        
            .clusterId(digitalocean_kubernetes_cluster.foo().id())
            .size("s-1vcpu-2gb")
            .autoScale(true)
            .minNodes(1)
            .maxNodes(5)
            .build());

    }
}
import pulumi
import pulumi_digitalocean as digitalocean

autoscale_pool_01 = digitalocean.KubernetesNodePool("autoscale-pool-01",
    cluster_id=digitalocean_kubernetes_cluster["foo"]["id"],
    size="s-1vcpu-2gb",
    auto_scale=True,
    min_nodes=1,
    max_nodes=5)
import * as pulumi from "@pulumi/pulumi";
import * as digitalocean from "@pulumi/digitalocean";

const autoscale_pool_01 = new digitalocean.KubernetesNodePool("autoscale-pool-01", {
    clusterId: digitalocean_kubernetes_cluster.foo.id,
    size: "s-1vcpu-2gb",
    autoScale: true,
    minNodes: 1,
    maxNodes: 5,
});
resources:
  autoscale-pool-01:
    type: digitalocean:KubernetesNodePool
    properties:
      clusterId: ${digitalocean_kubernetes_cluster.foo.id}
      size: s-1vcpu-2gb
      autoScale: true
      minNodes: 1
      maxNodes: 5

Create KubernetesNodePool Resource

new KubernetesNodePool(name: string, args: KubernetesNodePoolArgs, opts?: CustomResourceOptions);
@overload
def KubernetesNodePool(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       auto_scale: Optional[bool] = None,
                       cluster_id: Optional[str] = None,
                       labels: Optional[Mapping[str, str]] = None,
                       max_nodes: Optional[int] = None,
                       min_nodes: Optional[int] = None,
                       name: Optional[str] = None,
                       node_count: Optional[int] = None,
                       size: Optional[Union[str, DropletSlug]] = None,
                       tags: Optional[Sequence[str]] = None,
                       taints: Optional[Sequence[KubernetesNodePoolTaintArgs]] = None)
@overload
def KubernetesNodePool(resource_name: str,
                       args: KubernetesNodePoolArgs,
                       opts: Optional[ResourceOptions] = 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: digitalocean:KubernetesNodePool
properties: # The arguments to resource properties.
options: # 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.
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.

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

The KubernetesNodePool resource accepts the following input properties:

ClusterId string

The ID of the Kubernetes cluster to which the node pool is associated.

Size string | Pulumi.DigitalOcean.DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

AutoScale bool

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

Labels Dictionary<string, string>

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

MaxNodes int

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

MinNodes int

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

Name string

A name for the node pool.

NodeCount int

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

Tags List<string>

A list of tag names to be applied to the Kubernetes cluster.

Taints List<Pulumi.DigitalOcean.Inputs.KubernetesNodePoolTaintArgs>

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

ClusterId string

The ID of the Kubernetes cluster to which the node pool is associated.

Size string | DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

AutoScale bool

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

Labels map[string]string

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

MaxNodes int

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

MinNodes int

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

Name string

A name for the node pool.

NodeCount int

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

Tags []string

A list of tag names to be applied to the Kubernetes cluster.

Taints []KubernetesNodePoolTaintArgs

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

clusterId String

The ID of the Kubernetes cluster to which the node pool is associated.

size String | DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

autoScale Boolean

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

labels Map<String,String>

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

maxNodes Integer

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

minNodes Integer

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

name String

A name for the node pool.

nodeCount Integer

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

tags List<String>

A list of tag names to be applied to the Kubernetes cluster.

taints List<KubernetesNodePoolTaintArgs>

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

clusterId string

The ID of the Kubernetes cluster to which the node pool is associated.

size string | DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

autoScale boolean

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

labels {[key: string]: string}

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

maxNodes number

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

minNodes number

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

name string

A name for the node pool.

nodeCount number

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

tags string[]

A list of tag names to be applied to the Kubernetes cluster.

taints KubernetesNodePoolTaintArgs[]

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

cluster_id str

The ID of the Kubernetes cluster to which the node pool is associated.

size str | DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

auto_scale bool

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

labels Mapping[str, str]

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

max_nodes int

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

min_nodes int

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

name str

A name for the node pool.

node_count int

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

tags Sequence[str]

A list of tag names to be applied to the Kubernetes cluster.

taints Sequence[KubernetesNodePoolTaintArgs]

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

clusterId String

The ID of the Kubernetes cluster to which the node pool is associated.

size String | "s-1vcpu-1gb" | "s-1vcpu-1gb-amd" | "s-1vcpu-1gb-intel" | "s-1vcpu-2gb" | "s-1vcpu-2gb-amd" | "s-1vcpu-2gb-intel" | "s-2vcpu-2gb" | "s-2vcpu-2gb-amd" | "s-2vcpu-2gb-intel" | "s-2vcpu-4gb" | "s-2vcpu-4gb-amd" | "s-2vcpu-4gb-intel" | "s-4vcpu-8gb" | "s-4vcpu-8gb-amd" | "s-4vcpu-8gb-intel" | "s-8vcpu-16gb-amd" | "s-8vcpu-16gb-intel" | "c-2" | "c2-2vcpu-4gb" | "c2-4vcpu-8gb" | "c2-8vcpu-16gb" | "c2-16vcpu-32gb" | "c2-32vcpu-64gb" | "c-4" | "c-8" | "c-16" | "c-32" | "g-2vcpu-8gb" | "g-4vcpu-16gb" | "g-8vcpu-32gb" | "g-16vcpu-64gb" | "g-32vcpu-128gb" | "g-40vcpu-160gb" | "gd-2vcpu-8gb" | "gd-4vcpu-16gb" | "gd-8vcpu-32gb" | "gd-16vcpu-64gb" | "gd-32vcpu-128gb" | "gd-40vcpu-160gb" | "s-8vcpu-16gb" | "m-2vcpu-16gb" | "m-4vcpu-32gb" | "m-8vcpu-64gb" | "m-16vcpu-128gb" | "m-24vcpu-192gb" | "m-32vcpu-256gb" | "m3-2vcpu-16gb" | "m3-4vcpu-32gb" | "m3-8vcpu-64gb" | "m3-16vcpu-128gb" | "m3-24vcpu-192gb" | "m3-32vcpu-256gb" | "m6-2vcpu-16gb" | "m6-4vcpu-32gb" | "m6-8vcpu-64gb" | "m6-16vcpu-128gb" | "m6-24vcpu-192gb" | "m6-32vcpu-256gb" | "so-2vcpu-16gb" | "so-4vcpu-32gb" | "so-8vcpu-64gb" | "so-16vcpu-128gb" | "so-24vcpu-192gb" | "so-32vcpu-256gb" | "so1_5-2vcpu-16gb" | "so1_5-4vcpu-32gb" | "so1_5-8vcpu-64gb" | "so1_5-16vcpu-128gb" | "so1_5-24vcpu-192gb" | "so1_5-32vcpu-256gb" | "512mb" | "1gb" | "2gb" | "4gb" | "8gb" | "16gb" | "32gb" | "48gb" | "64gb" | "s-1vcpu-3gb" | "s-3vcpu-1gb" | "s-6vcpu-16gb" | "s-8vcpu-32gb" | "s-12vcpu-48gb" | "s-16vcpu-64gb" | "s-20vcpu-96gb" | "s-24vcpu-128gb" | "s-32vcpu-192gb"

The slug identifier for the type of Droplet to be used as workers in the node pool.

autoScale Boolean

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

labels Map<String>

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

maxNodes Number

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

minNodes Number

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

name String

A name for the node pool.

nodeCount Number

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

tags List<String>

A list of tag names to be applied to the Kubernetes cluster.

taints List<Property Map>

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

Outputs

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

ActualNodeCount int

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

Id string

The provider-assigned unique ID for this managed resource.

Nodes List<Pulumi.DigitalOcean.Outputs.KubernetesNodePoolNode>

A list of nodes in the pool. Each node exports the following attributes:

ActualNodeCount int

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

Id string

The provider-assigned unique ID for this managed resource.

Nodes []KubernetesNodePoolNode

A list of nodes in the pool. Each node exports the following attributes:

actualNodeCount Integer

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

id String

The provider-assigned unique ID for this managed resource.

nodes List<KubernetesNodePoolNode>

A list of nodes in the pool. Each node exports the following attributes:

actualNodeCount number

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

id string

The provider-assigned unique ID for this managed resource.

nodes KubernetesNodePoolNode[]

A list of nodes in the pool. Each node exports the following attributes:

actual_node_count int

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

id str

The provider-assigned unique ID for this managed resource.

nodes Sequence[KubernetesNodePoolNode]

A list of nodes in the pool. Each node exports the following attributes:

actualNodeCount Number

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

id String

The provider-assigned unique ID for this managed resource.

nodes List<Property Map>

A list of nodes in the pool. Each node exports the following attributes:

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,
        actual_node_count: Optional[int] = None,
        auto_scale: Optional[bool] = None,
        cluster_id: Optional[str] = None,
        labels: Optional[Mapping[str, str]] = None,
        max_nodes: Optional[int] = None,
        min_nodes: Optional[int] = None,
        name: Optional[str] = None,
        node_count: Optional[int] = None,
        nodes: Optional[Sequence[KubernetesNodePoolNodeArgs]] = None,
        size: Optional[Union[str, DropletSlug]] = None,
        tags: Optional[Sequence[str]] = None,
        taints: Optional[Sequence[KubernetesNodePoolTaintArgs]] = 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)
Resource lookup is not supported in YAML
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:
ActualNodeCount int

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

AutoScale bool

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

ClusterId string

The ID of the Kubernetes cluster to which the node pool is associated.

Labels Dictionary<string, string>

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

MaxNodes int

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

MinNodes int

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

Name string

A name for the node pool.

NodeCount int

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

Nodes List<Pulumi.DigitalOcean.Inputs.KubernetesNodePoolNodeArgs>

A list of nodes in the pool. Each node exports the following attributes:

Size string | Pulumi.DigitalOcean.DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

Tags List<string>

A list of tag names to be applied to the Kubernetes cluster.

Taints List<Pulumi.DigitalOcean.Inputs.KubernetesNodePoolTaintArgs>

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

ActualNodeCount int

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

AutoScale bool

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

ClusterId string

The ID of the Kubernetes cluster to which the node pool is associated.

Labels map[string]string

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

MaxNodes int

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

MinNodes int

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

Name string

A name for the node pool.

NodeCount int

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

Nodes []KubernetesNodePoolNodeArgs

A list of nodes in the pool. Each node exports the following attributes:

Size string | DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

Tags []string

A list of tag names to be applied to the Kubernetes cluster.

Taints []KubernetesNodePoolTaintArgs

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

actualNodeCount Integer

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

autoScale Boolean

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

clusterId String

The ID of the Kubernetes cluster to which the node pool is associated.

labels Map<String,String>

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

maxNodes Integer

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

minNodes Integer

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

name String

A name for the node pool.

nodeCount Integer

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

nodes List<KubernetesNodePoolNodeArgs>

A list of nodes in the pool. Each node exports the following attributes:

size String | DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

tags List<String>

A list of tag names to be applied to the Kubernetes cluster.

taints List<KubernetesNodePoolTaintArgs>

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

actualNodeCount number

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

autoScale boolean

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

clusterId string

The ID of the Kubernetes cluster to which the node pool is associated.

labels {[key: string]: string}

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

maxNodes number

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

minNodes number

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

name string

A name for the node pool.

nodeCount number

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

nodes KubernetesNodePoolNodeArgs[]

A list of nodes in the pool. Each node exports the following attributes:

size string | DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

tags string[]

A list of tag names to be applied to the Kubernetes cluster.

taints KubernetesNodePoolTaintArgs[]

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

actual_node_count int

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

auto_scale bool

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

cluster_id str

The ID of the Kubernetes cluster to which the node pool is associated.

labels Mapping[str, str]

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

max_nodes int

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

min_nodes int

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

name str

A name for the node pool.

node_count int

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

nodes Sequence[KubernetesNodePoolNodeArgs]

A list of nodes in the pool. Each node exports the following attributes:

size str | DropletSlug

The slug identifier for the type of Droplet to be used as workers in the node pool.

tags Sequence[str]

A list of tag names to be applied to the Kubernetes cluster.

taints Sequence[KubernetesNodePoolTaintArgs]

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

actualNodeCount Number

A computed field representing the actual number of nodes in the node pool, which is especially useful when auto-scaling is enabled.

autoScale Boolean

Enable auto-scaling of the number of nodes in the node pool within the given min/max range.

clusterId String

The ID of the Kubernetes cluster to which the node pool is associated.

labels Map<String>

A map of key/value pairs to apply to nodes in the pool. The labels are exposed in the Kubernetes API as labels in the metadata of the corresponding Node resources.

maxNodes Number

If auto-scaling is enabled, this represents the maximum number of nodes that the node pool can be scaled up to.

minNodes Number

If auto-scaling is enabled, this represents the minimum number of nodes that the node pool can be scaled down to.

name String

A name for the node pool.

nodeCount Number

The number of Droplet instances in the node pool. If auto-scaling is enabled, this should only be set if the desired result is to explicitly reset the number of nodes to this value. If auto-scaling is enabled, and the node count is outside of the given min/max range, it will use the min nodes value.

nodes List<Property Map>

A list of nodes in the pool. Each node exports the following attributes:

size String | "s-1vcpu-1gb" | "s-1vcpu-1gb-amd" | "s-1vcpu-1gb-intel" | "s-1vcpu-2gb" | "s-1vcpu-2gb-amd" | "s-1vcpu-2gb-intel" | "s-2vcpu-2gb" | "s-2vcpu-2gb-amd" | "s-2vcpu-2gb-intel" | "s-2vcpu-4gb" | "s-2vcpu-4gb-amd" | "s-2vcpu-4gb-intel" | "s-4vcpu-8gb" | "s-4vcpu-8gb-amd" | "s-4vcpu-8gb-intel" | "s-8vcpu-16gb-amd" | "s-8vcpu-16gb-intel" | "c-2" | "c2-2vcpu-4gb" | "c2-4vcpu-8gb" | "c2-8vcpu-16gb" | "c2-16vcpu-32gb" | "c2-32vcpu-64gb" | "c-4" | "c-8" | "c-16" | "c-32" | "g-2vcpu-8gb" | "g-4vcpu-16gb" | "g-8vcpu-32gb" | "g-16vcpu-64gb" | "g-32vcpu-128gb" | "g-40vcpu-160gb" | "gd-2vcpu-8gb" | "gd-4vcpu-16gb" | "gd-8vcpu-32gb" | "gd-16vcpu-64gb" | "gd-32vcpu-128gb" | "gd-40vcpu-160gb" | "s-8vcpu-16gb" | "m-2vcpu-16gb" | "m-4vcpu-32gb" | "m-8vcpu-64gb" | "m-16vcpu-128gb" | "m-24vcpu-192gb" | "m-32vcpu-256gb" | "m3-2vcpu-16gb" | "m3-4vcpu-32gb" | "m3-8vcpu-64gb" | "m3-16vcpu-128gb" | "m3-24vcpu-192gb" | "m3-32vcpu-256gb" | "m6-2vcpu-16gb" | "m6-4vcpu-32gb" | "m6-8vcpu-64gb" | "m6-16vcpu-128gb" | "m6-24vcpu-192gb" | "m6-32vcpu-256gb" | "so-2vcpu-16gb" | "so-4vcpu-32gb" | "so-8vcpu-64gb" | "so-16vcpu-128gb" | "so-24vcpu-192gb" | "so-32vcpu-256gb" | "so1_5-2vcpu-16gb" | "so1_5-4vcpu-32gb" | "so1_5-8vcpu-64gb" | "so1_5-16vcpu-128gb" | "so1_5-24vcpu-192gb" | "so1_5-32vcpu-256gb" | "512mb" | "1gb" | "2gb" | "4gb" | "8gb" | "16gb" | "32gb" | "48gb" | "64gb" | "s-1vcpu-3gb" | "s-3vcpu-1gb" | "s-6vcpu-16gb" | "s-8vcpu-32gb" | "s-12vcpu-48gb" | "s-16vcpu-64gb" | "s-20vcpu-96gb" | "s-24vcpu-128gb" | "s-32vcpu-192gb"

The slug identifier for the type of Droplet to be used as workers in the node pool.

tags List<String>

A list of tag names to be applied to the Kubernetes cluster.

taints List<Property Map>

A list of taints applied to all nodes in the pool.

This resource supports customized create timeouts. The default timeout is 30 minutes.

Supporting Types

DropletSlug

DropletS1VCPU1GB
s-1vcpu-1gb
DropletS1VCPU1GB_AMD
s-1vcpu-1gb-amd
DropletS1VCPU1GB_INTEL
s-1vcpu-1gb-intel
DropletS1VCPU2GB
s-1vcpu-2gb
DropletS1VCPU2GB_AMD
s-1vcpu-2gb-amd
DropletS1VCPU2GB_INTEL
s-1vcpu-2gb-intel
DropletS2VCPU2GB
s-2vcpu-2gb
DropletS2VCPU2GB_AMD
s-2vcpu-2gb-amd
DropletS2VCPU2GB_INTEL
s-2vcpu-2gb-intel
DropletS2VCPU4GB
s-2vcpu-4gb
DropletS2VCPU4GB_AMD
s-2vcpu-4gb-amd
DropletS2VCPU4GB_INTEL
s-2vcpu-4gb-intel
DropletS4VCPU8GB
s-4vcpu-8gb
DropletS4VCPU8GB_AMD
s-4vcpu-8gb-amd
DropletS4VCPU8GB_INTEL
s-4vcpu-8gb-intel
DropletS8VCPU16GB_AMD
s-8vcpu-16gb-amd
DropletS8VCPU16GB_INTEL
s-8vcpu-16gb-intel
DropletC2
c-2
DropletC22VCPU4GB
c2-2vcpu-4gb
DropletC22VCPU8GB
c2-4vcpu-8gb
DropletC28VCPU16GB
c2-8vcpu-16gb
DropletC216VCPU32GB
c2-16vcpu-32gb
DropletC232VCPU64GB
c2-32vcpu-64gb
DropletC4
c-4
DropletC8
c-8
DropletC16
c-16
DropletC32
c-32
DropletG2VCPU8GB
g-2vcpu-8gb
DropletG4VCPU16GB
g-4vcpu-16gb
DropletG8VCPU32GB
g-8vcpu-32gb
DropletG16VCPU64GB
g-16vcpu-64gb
DropletG32VCPU128GB
g-32vcpu-128gb
DropletG40VCPU160GB
g-40vcpu-160gb
DropletGD2VCPU8GB
gd-2vcpu-8gb
DropletGD4VCPU16GB
gd-4vcpu-16gb
DropletGD8VCPU32GB
gd-8vcpu-32gb
DropletGD16VCPU64GB
gd-16vcpu-64gb
DropletGD32VCPU128GB
gd-32vcpu-128gb
DropletGD40VCPU160GB
gd-40vcpu-160gb
DropletS8VCPU16GB
s-8vcpu-16gb
DropletM2VCPU16GB
m-2vcpu-16gb
DropletM4VCPU32GB
m-4vcpu-32gb
DropletM8VCPU64GB
m-8vcpu-64gb
DropletM16VCPU128GB
m-16vcpu-128gb
DropletM24VCPU192GB
m-24vcpu-192gb
DropletM32VCPU256GB
m-32vcpu-256gb
DropletM32VCPU16GB
m3-2vcpu-16gb
DropletM34VCPU32GB
m3-4vcpu-32gb
DropletM38VCPU64GB
m3-8vcpu-64gb
DropletM316VCPU128GB
m3-16vcpu-128gb
DropletM324VCPU192GB
m3-24vcpu-192gb
DropletM332VCPU256GB
m3-32vcpu-256gb
DropletM62VCPU16GB
m6-2vcpu-16gb
DropletM64VCPU32GB
m6-4vcpu-32gb
DropletM68VCPU64GB
m6-8vcpu-64gb
DropletM616VCPU128GB
m6-16vcpu-128gb
DropletM624VCPU192GB
m6-24vcpu-192gb
DropletM632VCPU256GB
m6-32vcpu-256gb
DropletSO2VCPU16GB
so-2vcpu-16gb
DropletSO4VCPU32GB
so-4vcpu-32gb
DropletSO8VCPU64GB
so-8vcpu-64gb
DropletSO16VCPU128GB
so-16vcpu-128gb
DropletSO24VCPU192GB
so-24vcpu-192gb
DropletSO32VCPU256GB
so-32vcpu-256gb
DropletSO152VCPU16GB
so1_5-2vcpu-16gb
DropletSO154VCPU32GB
so1_5-4vcpu-32gb
DropletSO158VCPU64GB
so1_5-8vcpu-64gb
DropletSO1516VCPU128GB
so1_5-16vcpu-128gb
DropletSO1524VCPU192GB
so1_5-24vcpu-192gb
DropletSO1532VCPU256GB
so1_5-32vcpu-256gb
Droplet512mb
512mb
Droplet1GB
1gb
Droplet2GB
2gb
Droplet4GB
4gb
Droplet8GB
8gb
Droplet16GB
16gb
Droplet32GB
32gb
Droplet48GB
48gb
Droplet64GB
64gb
DropletS1VCPU3GB
s-1vcpu-3gb
DropletS3VCPU1GB
s-3vcpu-1gb
DropletS6VCPU16GB
s-6vcpu-16gb
DropletS8VCPU32GB
s-8vcpu-32gb
DropletS12VCPU48GB
s-12vcpu-48gb
DropletS16VCPU64GB
s-16vcpu-64gb
DropletS20VCPU96GB
s-20vcpu-96gb
DropletS24VCPU128GB
s-24vcpu-128gb
DropletS32VCPU192GB
s-32vcpu-192gb
DropletSlugDropletS1VCPU1GB
s-1vcpu-1gb
DropletSlug_DropletS1VCPU1GB_AMD
s-1vcpu-1gb-amd
DropletSlug_DropletS1VCPU1GB_INTEL
s-1vcpu-1gb-intel
DropletSlugDropletS1VCPU2GB
s-1vcpu-2gb
DropletSlug_DropletS1VCPU2GB_AMD
s-1vcpu-2gb-amd
DropletSlug_DropletS1VCPU2GB_INTEL
s-1vcpu-2gb-intel
DropletSlugDropletS2VCPU2GB
s-2vcpu-2gb
DropletSlug_DropletS2VCPU2GB_AMD
s-2vcpu-2gb-amd
DropletSlug_DropletS2VCPU2GB_INTEL
s-2vcpu-2gb-intel
DropletSlugDropletS2VCPU4GB
s-2vcpu-4gb
DropletSlug_DropletS2VCPU4GB_AMD
s-2vcpu-4gb-amd
DropletSlug_DropletS2VCPU4GB_INTEL
s-2vcpu-4gb-intel
DropletSlugDropletS4VCPU8GB
s-4vcpu-8gb
DropletSlug_DropletS4VCPU8GB_AMD
s-4vcpu-8gb-amd
DropletSlug_DropletS4VCPU8GB_INTEL
s-4vcpu-8gb-intel
DropletSlug_DropletS8VCPU16GB_AMD
s-8vcpu-16gb-amd
DropletSlug_DropletS8VCPU16GB_INTEL
s-8vcpu-16gb-intel
DropletSlugDropletC2
c-2
DropletSlugDropletC22VCPU4GB
c2-2vcpu-4gb
DropletSlugDropletC22VCPU8GB
c2-4vcpu-8gb
DropletSlugDropletC28VCPU16GB
c2-8vcpu-16gb
DropletSlugDropletC216VCPU32GB
c2-16vcpu-32gb
DropletSlugDropletC232VCPU64GB
c2-32vcpu-64gb
DropletSlugDropletC4
c-4
DropletSlugDropletC8
c-8
DropletSlugDropletC16
c-16
DropletSlugDropletC32
c-32
DropletSlugDropletG2VCPU8GB
g-2vcpu-8gb
DropletSlugDropletG4VCPU16GB
g-4vcpu-16gb
DropletSlugDropletG8VCPU32GB
g-8vcpu-32gb
DropletSlugDropletG16VCPU64GB
g-16vcpu-64gb
DropletSlugDropletG32VCPU128GB
g-32vcpu-128gb
DropletSlugDropletG40VCPU160GB
g-40vcpu-160gb
DropletSlugDropletGD2VCPU8GB
gd-2vcpu-8gb
DropletSlugDropletGD4VCPU16GB
gd-4vcpu-16gb
DropletSlugDropletGD8VCPU32GB
gd-8vcpu-32gb
DropletSlugDropletGD16VCPU64GB
gd-16vcpu-64gb
DropletSlugDropletGD32VCPU128GB
gd-32vcpu-128gb
DropletSlugDropletGD40VCPU160GB
gd-40vcpu-160gb
DropletSlugDropletS8VCPU16GB
s-8vcpu-16gb
DropletSlugDropletM2VCPU16GB
m-2vcpu-16gb
DropletSlugDropletM4VCPU32GB
m-4vcpu-32gb
DropletSlugDropletM8VCPU64GB
m-8vcpu-64gb
DropletSlugDropletM16VCPU128GB
m-16vcpu-128gb
DropletSlugDropletM24VCPU192GB
m-24vcpu-192gb
DropletSlugDropletM32VCPU256GB
m-32vcpu-256gb
DropletSlugDropletM32VCPU16GB
m3-2vcpu-16gb
DropletSlugDropletM34VCPU32GB
m3-4vcpu-32gb
DropletSlugDropletM38VCPU64GB
m3-8vcpu-64gb
DropletSlugDropletM316VCPU128GB
m3-16vcpu-128gb
DropletSlugDropletM324VCPU192GB
m3-24vcpu-192gb
DropletSlugDropletM332VCPU256GB
m3-32vcpu-256gb
DropletSlugDropletM62VCPU16GB
m6-2vcpu-16gb
DropletSlugDropletM64VCPU32GB
m6-4vcpu-32gb
DropletSlugDropletM68VCPU64GB
m6-8vcpu-64gb
DropletSlugDropletM616VCPU128GB
m6-16vcpu-128gb
DropletSlugDropletM624VCPU192GB
m6-24vcpu-192gb
DropletSlugDropletM632VCPU256GB
m6-32vcpu-256gb
DropletSlugDropletSO2VCPU16GB
so-2vcpu-16gb
DropletSlugDropletSO4VCPU32GB
so-4vcpu-32gb
DropletSlugDropletSO8VCPU64GB
so-8vcpu-64gb
DropletSlugDropletSO16VCPU128GB
so-16vcpu-128gb
DropletSlugDropletSO24VCPU192GB
so-24vcpu-192gb
DropletSlugDropletSO32VCPU256GB
so-32vcpu-256gb
DropletSlugDropletSO152VCPU16GB
so1_5-2vcpu-16gb
DropletSlugDropletSO154VCPU32GB
so1_5-4vcpu-32gb
DropletSlugDropletSO158VCPU64GB
so1_5-8vcpu-64gb
DropletSlugDropletSO1516VCPU128GB
so1_5-16vcpu-128gb
DropletSlugDropletSO1524VCPU192GB
so1_5-24vcpu-192gb
DropletSlugDropletSO1532VCPU256GB
so1_5-32vcpu-256gb
DropletSlugDroplet512mb
512mb
DropletSlugDroplet1GB
1gb
DropletSlugDroplet2GB
2gb
DropletSlugDroplet4GB
4gb
DropletSlugDroplet8GB
8gb
DropletSlugDroplet16GB
16gb
DropletSlugDroplet32GB
32gb
DropletSlugDroplet48GB
48gb
DropletSlugDroplet64GB
64gb
DropletSlugDropletS1VCPU3GB
s-1vcpu-3gb
DropletSlugDropletS3VCPU1GB
s-3vcpu-1gb
DropletSlugDropletS6VCPU16GB
s-6vcpu-16gb
DropletSlugDropletS8VCPU32GB
s-8vcpu-32gb
DropletSlugDropletS12VCPU48GB
s-12vcpu-48gb
DropletSlugDropletS16VCPU64GB
s-16vcpu-64gb
DropletSlugDropletS20VCPU96GB
s-20vcpu-96gb
DropletSlugDropletS24VCPU128GB
s-24vcpu-128gb
DropletSlugDropletS32VCPU192GB
s-32vcpu-192gb
DropletS1VCPU1GB
s-1vcpu-1gb
DropletS1VCPU1GBAMD
s-1vcpu-1gb-amd
DropletS1VCPU1GBINTEL
s-1vcpu-1gb-intel
DropletS1VCPU2GB
s-1vcpu-2gb
DropletS1VCPU2GBAMD
s-1vcpu-2gb-amd
DropletS1VCPU2GBINTEL
s-1vcpu-2gb-intel
DropletS2VCPU2GB
s-2vcpu-2gb
DropletS2VCPU2GBAMD
s-2vcpu-2gb-amd
DropletS2VCPU2GBINTEL
s-2vcpu-2gb-intel
DropletS2VCPU4GB
s-2vcpu-4gb
DropletS2VCPU4GBAMD
s-2vcpu-4gb-amd
DropletS2VCPU4GBINTEL
s-2vcpu-4gb-intel
DropletS4VCPU8GB
s-4vcpu-8gb
DropletS4VCPU8GBAMD
s-4vcpu-8gb-amd
DropletS4VCPU8GBINTEL
s-4vcpu-8gb-intel
DropletS8VCPU16GBAMD
s-8vcpu-16gb-amd
DropletS8VCPU16GBINTEL
s-8vcpu-16gb-intel
DropletC2
c-2
DropletC22VCPU4GB
c2-2vcpu-4gb
DropletC22VCPU8GB
c2-4vcpu-8gb
DropletC28VCPU16GB
c2-8vcpu-16gb
DropletC216VCPU32GB
c2-16vcpu-32gb
DropletC232VCPU64GB
c2-32vcpu-64gb
DropletC4
c-4
DropletC8
c-8
DropletC16
c-16
DropletC32
c-32
DropletG2VCPU8GB
g-2vcpu-8gb
DropletG4VCPU16GB
g-4vcpu-16gb
DropletG8VCPU32GB
g-8vcpu-32gb
DropletG16VCPU64GB
g-16vcpu-64gb
DropletG32VCPU128GB
g-32vcpu-128gb
DropletG40VCPU160GB
g-40vcpu-160gb
DropletGD2VCPU8GB
gd-2vcpu-8gb
DropletGD4VCPU16GB
gd-4vcpu-16gb
DropletGD8VCPU32GB
gd-8vcpu-32gb
DropletGD16VCPU64GB
gd-16vcpu-64gb
DropletGD32VCPU128GB
gd-32vcpu-128gb
DropletGD40VCPU160GB
gd-40vcpu-160gb
DropletS8VCPU16GB
s-8vcpu-16gb
DropletM2VCPU16GB
m-2vcpu-16gb
DropletM4VCPU32GB
m-4vcpu-32gb
DropletM8VCPU64GB
m-8vcpu-64gb
DropletM16VCPU128GB
m-16vcpu-128gb
DropletM24VCPU192GB
m-24vcpu-192gb
DropletM32VCPU256GB
m-32vcpu-256gb
DropletM32VCPU16GB
m3-2vcpu-16gb
DropletM34VCPU32GB
m3-4vcpu-32gb
DropletM38VCPU64GB
m3-8vcpu-64gb
DropletM316VCPU128GB
m3-16vcpu-128gb
DropletM324VCPU192GB
m3-24vcpu-192gb
DropletM332VCPU256GB
m3-32vcpu-256gb
DropletM62VCPU16GB
m6-2vcpu-16gb
DropletM64VCPU32GB
m6-4vcpu-32gb
DropletM68VCPU64GB
m6-8vcpu-64gb
DropletM616VCPU128GB
m6-16vcpu-128gb
DropletM624VCPU192GB
m6-24vcpu-192gb
DropletM632VCPU256GB
m6-32vcpu-256gb
DropletSO2VCPU16GB
so-2vcpu-16gb
DropletSO4VCPU32GB
so-4vcpu-32gb
DropletSO8VCPU64GB
so-8vcpu-64gb
DropletSO16VCPU128GB
so-16vcpu-128gb
DropletSO24VCPU192GB
so-24vcpu-192gb
DropletSO32VCPU256GB
so-32vcpu-256gb
DropletSO152VCPU16GB
so1_5-2vcpu-16gb
DropletSO154VCPU32GB
so1_5-4vcpu-32gb
DropletSO158VCPU64GB
so1_5-8vcpu-64gb
DropletSO1516VCPU128GB
so1_5-16vcpu-128gb
DropletSO1524VCPU192GB
so1_5-24vcpu-192gb
DropletSO1532VCPU256GB
so1_5-32vcpu-256gb
Droplet512mb
512mb
Droplet1GB
1gb
Droplet2GB
2gb
Droplet4GB
4gb
Droplet8GB
8gb
Droplet16GB
16gb
Droplet32GB
32gb
Droplet48GB
48gb
Droplet64GB
64gb
DropletS1VCPU3GB
s-1vcpu-3gb
DropletS3VCPU1GB
s-3vcpu-1gb
DropletS6VCPU16GB
s-6vcpu-16gb
DropletS8VCPU32GB
s-8vcpu-32gb
DropletS12VCPU48GB
s-12vcpu-48gb
DropletS16VCPU64GB
s-16vcpu-64gb
DropletS20VCPU96GB
s-20vcpu-96gb
DropletS24VCPU128GB
s-24vcpu-128gb
DropletS32VCPU192GB
s-32vcpu-192gb
DropletS1VCPU1GB
s-1vcpu-1gb
DropletS1VCPU1GB_AMD
s-1vcpu-1gb-amd
DropletS1VCPU1GB_INTEL
s-1vcpu-1gb-intel
DropletS1VCPU2GB
s-1vcpu-2gb
DropletS1VCPU2GB_AMD
s-1vcpu-2gb-amd
DropletS1VCPU2GB_INTEL
s-1vcpu-2gb-intel
DropletS2VCPU2GB
s-2vcpu-2gb
DropletS2VCPU2GB_AMD
s-2vcpu-2gb-amd
DropletS2VCPU2GB_INTEL
s-2vcpu-2gb-intel
DropletS2VCPU4GB
s-2vcpu-4gb
DropletS2VCPU4GB_AMD
s-2vcpu-4gb-amd
DropletS2VCPU4GB_INTEL
s-2vcpu-4gb-intel
DropletS4VCPU8GB
s-4vcpu-8gb
DropletS4VCPU8GB_AMD
s-4vcpu-8gb-amd
DropletS4VCPU8GB_INTEL
s-4vcpu-8gb-intel
DropletS8VCPU16GB_AMD
s-8vcpu-16gb-amd
DropletS8VCPU16GB_INTEL
s-8vcpu-16gb-intel
DropletC2
c-2
DropletC22VCPU4GB
c2-2vcpu-4gb
DropletC22VCPU8GB
c2-4vcpu-8gb
DropletC28VCPU16GB
c2-8vcpu-16gb
DropletC216VCPU32GB
c2-16vcpu-32gb
DropletC232VCPU64GB
c2-32vcpu-64gb
DropletC4
c-4
DropletC8
c-8
DropletC16
c-16
DropletC32
c-32
DropletG2VCPU8GB
g-2vcpu-8gb
DropletG4VCPU16GB
g-4vcpu-16gb
DropletG8VCPU32GB
g-8vcpu-32gb
DropletG16VCPU64GB
g-16vcpu-64gb
DropletG32VCPU128GB
g-32vcpu-128gb
DropletG40VCPU160GB
g-40vcpu-160gb
DropletGD2VCPU8GB
gd-2vcpu-8gb
DropletGD4VCPU16GB
gd-4vcpu-16gb
DropletGD8VCPU32GB
gd-8vcpu-32gb
DropletGD16VCPU64GB
gd-16vcpu-64gb
DropletGD32VCPU128GB
gd-32vcpu-128gb
DropletGD40VCPU160GB
gd-40vcpu-160gb
DropletS8VCPU16GB
s-8vcpu-16gb
DropletM2VCPU16GB
m-2vcpu-16gb
DropletM4VCPU32GB
m-4vcpu-32gb
DropletM8VCPU64GB
m-8vcpu-64gb
DropletM16VCPU128GB
m-16vcpu-128gb
DropletM24VCPU192GB
m-24vcpu-192gb
DropletM32VCPU256GB
m-32vcpu-256gb
DropletM32VCPU16GB
m3-2vcpu-16gb
DropletM34VCPU32GB
m3-4vcpu-32gb
DropletM38VCPU64GB
m3-8vcpu-64gb
DropletM316VCPU128GB
m3-16vcpu-128gb
DropletM324VCPU192GB
m3-24vcpu-192gb
DropletM332VCPU256GB
m3-32vcpu-256gb
DropletM62VCPU16GB
m6-2vcpu-16gb
DropletM64VCPU32GB
m6-4vcpu-32gb
DropletM68VCPU64GB
m6-8vcpu-64gb
DropletM616VCPU128GB
m6-16vcpu-128gb
DropletM624VCPU192GB
m6-24vcpu-192gb
DropletM632VCPU256GB
m6-32vcpu-256gb
DropletSO2VCPU16GB
so-2vcpu-16gb
DropletSO4VCPU32GB
so-4vcpu-32gb
DropletSO8VCPU64GB
so-8vcpu-64gb
DropletSO16VCPU128GB
so-16vcpu-128gb
DropletSO24VCPU192GB
so-24vcpu-192gb
DropletSO32VCPU256GB
so-32vcpu-256gb
DropletSO152VCPU16GB
so1_5-2vcpu-16gb
DropletSO154VCPU32GB
so1_5-4vcpu-32gb
DropletSO158VCPU64GB
so1_5-8vcpu-64gb
DropletSO1516VCPU128GB
so1_5-16vcpu-128gb
DropletSO1524VCPU192GB
so1_5-24vcpu-192gb
DropletSO1532VCPU256GB
so1_5-32vcpu-256gb
Droplet512mb
512mb
Droplet1GB
1gb
Droplet2GB
2gb
Droplet4GB
4gb
Droplet8GB
8gb
Droplet16GB
16gb
Droplet32GB
32gb
Droplet48GB
48gb
Droplet64GB
64gb
DropletS1VCPU3GB
s-1vcpu-3gb
DropletS3VCPU1GB
s-3vcpu-1gb
DropletS6VCPU16GB
s-6vcpu-16gb
DropletS8VCPU32GB
s-8vcpu-32gb
DropletS12VCPU48GB
s-12vcpu-48gb
DropletS16VCPU64GB
s-16vcpu-64gb
DropletS20VCPU96GB
s-20vcpu-96gb
DropletS24VCPU128GB
s-24vcpu-128gb
DropletS32VCPU192GB
s-32vcpu-192gb
DROPLET_S1_VCPU1_GB
s-1vcpu-1gb
DROPLET_S1_VCPU1_G_B_AMD
s-1vcpu-1gb-amd
DROPLET_S1_VCPU1_G_B_INTEL
s-1vcpu-1gb-intel
DROPLET_S1_VCPU2_GB
s-1vcpu-2gb
DROPLET_S1_VCPU2_G_B_AMD
s-1vcpu-2gb-amd
DROPLET_S1_VCPU2_G_B_INTEL
s-1vcpu-2gb-intel
DROPLET_S2_VCPU2_GB
s-2vcpu-2gb
DROPLET_S2_VCPU2_G_B_AMD
s-2vcpu-2gb-amd
DROPLET_S2_VCPU2_G_B_INTEL
s-2vcpu-2gb-intel
DROPLET_S2_VCPU4_GB
s-2vcpu-4gb
DROPLET_S2_VCPU4_G_B_AMD
s-2vcpu-4gb-amd
DROPLET_S2_VCPU4_G_B_INTEL
s-2vcpu-4gb-intel
DROPLET_S4_VCPU8_GB
s-4vcpu-8gb
DROPLET_S4_VCPU8_G_B_AMD
s-4vcpu-8gb-amd
DROPLET_S4_VCPU8_G_B_INTEL
s-4vcpu-8gb-intel
DROPLET_S8_VCPU16_G_B_AMD
s-8vcpu-16gb-amd
DROPLET_S8_VCPU16_G_B_INTEL
s-8vcpu-16gb-intel
DROPLET_C2
c-2
DROPLET_C22_VCPU4_GB
c2-2vcpu-4gb
DROPLET_C22_VCPU8_GB
c2-4vcpu-8gb
DROPLET_C28_VCPU16_GB
c2-8vcpu-16gb
DROPLET_C216_VCPU32_GB
c2-16vcpu-32gb
DROPLET_C232_VCPU64_GB
c2-32vcpu-64gb
DROPLET_C4
c-4
DROPLET_C8
c-8
DROPLET_C16
c-16
DROPLET_C32
c-32
DROPLET_G2_VCPU8_GB
g-2vcpu-8gb
DROPLET_G4_VCPU16_GB
g-4vcpu-16gb
DROPLET_G8_VCPU32_GB
g-8vcpu-32gb
DROPLET_G16_VCPU64_GB
g-16vcpu-64gb
DROPLET_G32_VCPU128_GB
g-32vcpu-128gb
DROPLET_G40_VCPU160_GB
g-40vcpu-160gb
DROPLET_GD2_VCPU8_GB
gd-2vcpu-8gb
DROPLET_GD4_VCPU16_GB
gd-4vcpu-16gb
DROPLET_GD8_VCPU32_GB
gd-8vcpu-32gb
DROPLET_GD16_VCPU64_GB
gd-16vcpu-64gb
DROPLET_GD32_VCPU128_GB
gd-32vcpu-128gb
DROPLET_GD40_VCPU160_GB
gd-40vcpu-160gb
DROPLET_S8_VCPU16_GB
s-8vcpu-16gb
DROPLET_M2_VCPU16_GB
m-2vcpu-16gb
DROPLET_M4_VCPU32_GB
m-4vcpu-32gb
DROPLET_M8_VCPU64_GB
m-8vcpu-64gb
DROPLET_M16_VCPU128_GB
m-16vcpu-128gb
DROPLET_M24_VCPU192_GB
m-24vcpu-192gb
DROPLET_M32_VCPU256_GB
m-32vcpu-256gb
DROPLET_M32_VCPU16_GB
m3-2vcpu-16gb
DROPLET_M34_VCPU32_GB
m3-4vcpu-32gb
DROPLET_M38_VCPU64_GB
m3-8vcpu-64gb
DROPLET_M316_VCPU128_GB
m3-16vcpu-128gb
DROPLET_M324_VCPU192_GB
m3-24vcpu-192gb
DROPLET_M332_VCPU256_GB
m3-32vcpu-256gb
DROPLET_M62_VCPU16_GB
m6-2vcpu-16gb
DROPLET_M64_VCPU32_GB
m6-4vcpu-32gb
DROPLET_M68_VCPU64_GB
m6-8vcpu-64gb
DROPLET_M616_VCPU128_GB
m6-16vcpu-128gb
DROPLET_M624_VCPU192_GB
m6-24vcpu-192gb
DROPLET_M632_VCPU256_GB
m6-32vcpu-256gb
DROPLET_SO2_VCPU16_GB
so-2vcpu-16gb
DROPLET_SO4_VCPU32_GB
so-4vcpu-32gb
DROPLET_SO8_VCPU64_GB
so-8vcpu-64gb
DROPLET_SO16_VCPU128_GB
so-16vcpu-128gb
DROPLET_SO24_VCPU192_GB
so-24vcpu-192gb
DROPLET_SO32_VCPU256_GB
so-32vcpu-256gb
DROPLET_SO152_VCPU16_GB
so1_5-2vcpu-16gb
DROPLET_SO154_VCPU32_GB
so1_5-4vcpu-32gb
DROPLET_SO158_VCPU64_GB
so1_5-8vcpu-64gb
DROPLET_SO1516_VCPU128_GB
so1_5-16vcpu-128gb
DROPLET_SO1524_VCPU192_GB
so1_5-24vcpu-192gb
DROPLET_SO1532_VCPU256_GB
so1_5-32vcpu-256gb
DROPLET512MB
512mb
DROPLET1_GB
1gb
DROPLET2_GB
2gb
DROPLET4_GB
4gb
DROPLET8_GB
8gb
DROPLET16_GB
16gb
DROPLET32_GB
32gb
DROPLET48_GB
48gb
DROPLET64_GB
64gb
DROPLET_S1_VCPU3_GB
s-1vcpu-3gb
DROPLET_S3_VCPU1_GB
s-3vcpu-1gb
DROPLET_S6_VCPU16_GB
s-6vcpu-16gb
DROPLET_S8_VCPU32_GB
s-8vcpu-32gb
DROPLET_S12_VCPU48_GB
s-12vcpu-48gb
DROPLET_S16_VCPU64_GB
s-16vcpu-64gb
DROPLET_S20_VCPU96_GB
s-20vcpu-96gb
DROPLET_S24_VCPU128_GB
s-24vcpu-128gb
DROPLET_S32_VCPU192_GB
s-32vcpu-192gb
"s-1vcpu-1gb"
s-1vcpu-1gb
"s-1vcpu-1gb-amd"
s-1vcpu-1gb-amd
"s-1vcpu-1gb-intel"
s-1vcpu-1gb-intel
"s-1vcpu-2gb"
s-1vcpu-2gb
"s-1vcpu-2gb-amd"
s-1vcpu-2gb-amd
"s-1vcpu-2gb-intel"
s-1vcpu-2gb-intel
"s-2vcpu-2gb"
s-2vcpu-2gb
"s-2vcpu-2gb-amd"
s-2vcpu-2gb-amd
"s-2vcpu-2gb-intel"
s-2vcpu-2gb-intel
"s-2vcpu-4gb"
s-2vcpu-4gb
"s-2vcpu-4gb-amd"
s-2vcpu-4gb-amd
"s-2vcpu-4gb-intel"
s-2vcpu-4gb-intel
"s-4vcpu-8gb"
s-4vcpu-8gb
"s-4vcpu-8gb-amd"
s-4vcpu-8gb-amd
"s-4vcpu-8gb-intel"
s-4vcpu-8gb-intel
"s-8vcpu-16gb-amd"
s-8vcpu-16gb-amd
"s-8vcpu-16gb-intel"
s-8vcpu-16gb-intel
"c-2"
c-2
"c2-2vcpu-4gb"
c2-2vcpu-4gb
"c2-4vcpu-8gb"
c2-4vcpu-8gb
"c2-8vcpu-16gb"
c2-8vcpu-16gb
"c2-16vcpu-32gb"
c2-16vcpu-32gb
"c2-32vcpu-64gb"
c2-32vcpu-64gb
"c-4"
c-4
"c-8"
c-8
"c-16"
c-16
"c-32"
c-32
"g-2vcpu-8gb"
g-2vcpu-8gb
"g-4vcpu-16gb"
g-4vcpu-16gb
"g-8vcpu-32gb"
g-8vcpu-32gb
"g-16vcpu-64gb"
g-16vcpu-64gb
"g-32vcpu-128gb"
g-32vcpu-128gb
"g-40vcpu-160gb"
g-40vcpu-160gb
"gd-2vcpu-8gb"
gd-2vcpu-8gb
"gd-4vcpu-16gb"
gd-4vcpu-16gb
"gd-8vcpu-32gb"
gd-8vcpu-32gb
"gd-16vcpu-64gb"
gd-16vcpu-64gb
"gd-32vcpu-128gb"
gd-32vcpu-128gb
"gd-40vcpu-160gb"
gd-40vcpu-160gb
"s-8vcpu-16gb"
s-8vcpu-16gb
"m-2vcpu-16gb"
m-2vcpu-16gb
"m-4vcpu-32gb"
m-4vcpu-32gb
"m-8vcpu-64gb"
m-8vcpu-64gb
"m-16vcpu-128gb"
m-16vcpu-128gb
"m-24vcpu-192gb"
m-24vcpu-192gb
"m-32vcpu-256gb"
m-32vcpu-256gb
"m3-2vcpu-16gb"
m3-2vcpu-16gb
"m3-4vcpu-32gb"
m3-4vcpu-32gb
"m3-8vcpu-64gb"
m3-8vcpu-64gb
"m3-16vcpu-128gb"
m3-16vcpu-128gb
"m3-24vcpu-192gb"
m3-24vcpu-192gb
"m3-32vcpu-256gb"
m3-32vcpu-256gb
"m6-2vcpu-16gb"
m6-2vcpu-16gb
"m6-4vcpu-32gb"
m6-4vcpu-32gb
"m6-8vcpu-64gb"
m6-8vcpu-64gb
"m6-16vcpu-128gb"
m6-16vcpu-128gb
"m6-24vcpu-192gb"
m6-24vcpu-192gb
"m6-32vcpu-256gb"
m6-32vcpu-256gb
"so-2vcpu-16gb"
so-2vcpu-16gb
"so-4vcpu-32gb"
so-4vcpu-32gb
"so-8vcpu-64gb"
so-8vcpu-64gb
"so-16vcpu-128gb"
so-16vcpu-128gb
"so-24vcpu-192gb"
so-24vcpu-192gb
"so-32vcpu-256gb"
so-32vcpu-256gb
"so1_5-2vcpu-16gb"
so1_5-2vcpu-16gb
"so1_5-4vcpu-32gb"
so1_5-4vcpu-32gb
"so1_5-8vcpu-64gb"
so1_5-8vcpu-64gb
"so1_5-16vcpu-128gb"
so1_5-16vcpu-128gb
"so1_5-24vcpu-192gb"
so1_5-24vcpu-192gb
"so1_5-32vcpu-256gb"
so1_5-32vcpu-256gb
"512mb"
512mb
"1gb"
1gb
"2gb"
2gb
"4gb"
4gb
"8gb"
8gb
"16gb"
16gb
"32gb"
32gb
"48gb"
48gb
"64gb"
64gb
"s-1vcpu-3gb"
s-1vcpu-3gb
"s-3vcpu-1gb"
s-3vcpu-1gb
"s-6vcpu-16gb"
s-6vcpu-16gb
"s-8vcpu-32gb"
s-8vcpu-32gb
"s-12vcpu-48gb"
s-12vcpu-48gb
"s-16vcpu-64gb"
s-16vcpu-64gb
"s-20vcpu-96gb"
s-20vcpu-96gb
"s-24vcpu-128gb"
s-24vcpu-128gb
"s-32vcpu-192gb"
s-32vcpu-192gb

KubernetesNodePoolNode

CreatedAt string

The date and time when the node was created.

DropletId string

The id of the node's droplet

Id string

A unique ID that can be used to identify and reference the node.

Name string

A name for the node pool.

Status string

A string indicating the current status of the individual node.

UpdatedAt string

The date and time when the node was last updated.

CreatedAt string

The date and time when the node was created.

DropletId string

The id of the node's droplet

Id string

A unique ID that can be used to identify and reference the node.

Name string

A name for the node pool.

Status string

A string indicating the current status of the individual node.

UpdatedAt string

The date and time when the node was last updated.

createdAt String

The date and time when the node was created.

dropletId String

The id of the node's droplet

id String

A unique ID that can be used to identify and reference the node.

name String

A name for the node pool.

status String

A string indicating the current status of the individual node.

updatedAt String

The date and time when the node was last updated.

createdAt string

The date and time when the node was created.

dropletId string

The id of the node's droplet

id string

A unique ID that can be used to identify and reference the node.

name string

A name for the node pool.

status string

A string indicating the current status of the individual node.

updatedAt string

The date and time when the node was last updated.

created_at str

The date and time when the node was created.

droplet_id str

The id of the node's droplet

id str

A unique ID that can be used to identify and reference the node.

name str

A name for the node pool.

status str

A string indicating the current status of the individual node.

updated_at str

The date and time when the node was last updated.

createdAt String

The date and time when the node was created.

dropletId String

The id of the node's droplet

id String

A unique ID that can be used to identify and reference the node.

name String

A name for the node pool.

status String

A string indicating the current status of the individual node.

updatedAt String

The date and time when the node was last updated.

KubernetesNodePoolTaint

Effect string

How the node reacts to pods that it won't tolerate. Available effect values are: "NoSchedule", "PreferNoSchedule", "NoExecute".

Key string

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

Value string

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

Effect string

How the node reacts to pods that it won't tolerate. Available effect values are: "NoSchedule", "PreferNoSchedule", "NoExecute".

Key string

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

Value string

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

effect String

How the node reacts to pods that it won't tolerate. Available effect values are: "NoSchedule", "PreferNoSchedule", "NoExecute".

key String

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

value String

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

effect string

How the node reacts to pods that it won't tolerate. Available effect values are: "NoSchedule", "PreferNoSchedule", "NoExecute".

key string

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

value string

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

effect str

How the node reacts to pods that it won't tolerate. Available effect values are: "NoSchedule", "PreferNoSchedule", "NoExecute".

key str

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

value str

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

effect String

How the node reacts to pods that it won't tolerate. Available effect values are: "NoSchedule", "PreferNoSchedule", "NoExecute".

key String

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

value String

An arbitrary string. The "key" and "value" fields of the "taint" object form a key-value pair.

Import

If you are importing an existing Kubernetes cluster with a single node pool, just import the cluster. Additional node pools can be imported by using their id, e.g.

 $ pulumi import digitalocean:index/kubernetesNodePool:KubernetesNodePool mynodepool 9d76f410-9284-4436-9633-4066852442c8

NoteIf the node pool has the terraform:default-node-pool tag, then it is a default node pool for an existing cluster. The provider will refuse to import the node pool in that case because the node pool is managed by the digitalocean_kubernetes_cluster resource and not by this digitalocean_kubernetes_node_pool resource.

Package Details

Repository
DigitalOcean pulumi/pulumi-digitalocean
License
Apache-2.0
Notes

This Pulumi package is based on the digitalocean Terraform Provider.