1. Packages
  2. Nutanix
  3. API Docs
  4. KarbonWorkerNodepool
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

nutanix.KarbonWorkerNodepool

Explore with Pulumi AI

nutanix logo
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

    Provides a resource to add/remove worker nodepool in an existing Nutanix Kubernetes Engine (NKE).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pierskarsenbarg/nutanix";
    
    const kworkerNp = new nutanix.KarbonWorkerNodepool("kworkerNp", {
        ahvConfig: {
            cpu: 4,
            diskMib: 122880,
            memoryMib: 8192,
            networkUuid: "61213511-6383-4a38-9ac8-4a552c0e5865",
        },
        clusterName: "karbon",
        numInstances: 1,
    });
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    kworker_np = nutanix.KarbonWorkerNodepool("kworkerNp",
        ahv_config=nutanix.KarbonWorkerNodepoolAhvConfigArgs(
            cpu=4,
            disk_mib=122880,
            memory_mib=8192,
            network_uuid="61213511-6383-4a38-9ac8-4a552c0e5865",
        ),
        cluster_name="karbon",
        num_instances=1)
    
    package main
    
    import (
    	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nutanix.NewKarbonWorkerNodepool(ctx, "kworkerNp", &nutanix.KarbonWorkerNodepoolArgs{
    			AhvConfig: &nutanix.KarbonWorkerNodepoolAhvConfigArgs{
    				Cpu:         pulumi.Int(4),
    				DiskMib:     pulumi.Int(122880),
    				MemoryMib:   pulumi.Int(8192),
    				NetworkUuid: pulumi.String("61213511-6383-4a38-9ac8-4a552c0e5865"),
    			},
    			ClusterName:  pulumi.String("karbon"),
    			NumInstances: pulumi.Int(1),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = PiersKarsenbarg.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var kworkerNp = new Nutanix.KarbonWorkerNodepool("kworkerNp", new()
        {
            AhvConfig = new Nutanix.Inputs.KarbonWorkerNodepoolAhvConfigArgs
            {
                Cpu = 4,
                DiskMib = 122880,
                MemoryMib = 8192,
                NetworkUuid = "61213511-6383-4a38-9ac8-4a552c0e5865",
            },
            ClusterName = "karbon",
            NumInstances = 1,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.KarbonWorkerNodepool;
    import com.pulumi.nutanix.KarbonWorkerNodepoolArgs;
    import com.pulumi.nutanix.inputs.KarbonWorkerNodepoolAhvConfigArgs;
    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 kworkerNp = new KarbonWorkerNodepool("kworkerNp", KarbonWorkerNodepoolArgs.builder()
                .ahvConfig(KarbonWorkerNodepoolAhvConfigArgs.builder()
                    .cpu(4)
                    .diskMib(122880)
                    .memoryMib(8192)
                    .networkUuid("61213511-6383-4a38-9ac8-4a552c0e5865")
                    .build())
                .clusterName("karbon")
                .numInstances(1)
                .build());
    
        }
    }
    
    resources:
      kworkerNp:
        type: nutanix:KarbonWorkerNodepool
        properties:
          ahvConfig:
            cpu: 4
            diskMib: 122880
            memoryMib: 8192
            networkUuid: 61213511-6383-4a38-9ac8-4a552c0e5865
          clusterName: karbon
          numInstances: 1
    
    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pierskarsenbarg/nutanix";
    
    const kworkerNp = new nutanix.KarbonWorkerNodepool("kworkerNp", {
        ahvConfig: {
            cpu: 4,
            diskMib: 122880,
            memoryMib: 8192,
            networkUuid: "61213511-6383-4a38-9ac8-4a552c0e5865",
        },
        clusterName: "karbon",
        labels: {
            k1: "v1",
            k2: "v2",
        },
        numInstances: 1,
    });
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    kworker_np = nutanix.KarbonWorkerNodepool("kworkerNp",
        ahv_config=nutanix.KarbonWorkerNodepoolAhvConfigArgs(
            cpu=4,
            disk_mib=122880,
            memory_mib=8192,
            network_uuid="61213511-6383-4a38-9ac8-4a552c0e5865",
        ),
        cluster_name="karbon",
        labels={
            "k1": "v1",
            "k2": "v2",
        },
        num_instances=1)
    
    package main
    
    import (
    	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nutanix.NewKarbonWorkerNodepool(ctx, "kworkerNp", &nutanix.KarbonWorkerNodepoolArgs{
    			AhvConfig: &nutanix.KarbonWorkerNodepoolAhvConfigArgs{
    				Cpu:         pulumi.Int(4),
    				DiskMib:     pulumi.Int(122880),
    				MemoryMib:   pulumi.Int(8192),
    				NetworkUuid: pulumi.String("61213511-6383-4a38-9ac8-4a552c0e5865"),
    			},
    			ClusterName: pulumi.String("karbon"),
    			Labels: pulumi.Map{
    				"k1": pulumi.Any("v1"),
    				"k2": pulumi.Any("v2"),
    			},
    			NumInstances: pulumi.Int(1),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = PiersKarsenbarg.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var kworkerNp = new Nutanix.KarbonWorkerNodepool("kworkerNp", new()
        {
            AhvConfig = new Nutanix.Inputs.KarbonWorkerNodepoolAhvConfigArgs
            {
                Cpu = 4,
                DiskMib = 122880,
                MemoryMib = 8192,
                NetworkUuid = "61213511-6383-4a38-9ac8-4a552c0e5865",
            },
            ClusterName = "karbon",
            Labels = 
            {
                { "k1", "v1" },
                { "k2", "v2" },
            },
            NumInstances = 1,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.KarbonWorkerNodepool;
    import com.pulumi.nutanix.KarbonWorkerNodepoolArgs;
    import com.pulumi.nutanix.inputs.KarbonWorkerNodepoolAhvConfigArgs;
    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 kworkerNp = new KarbonWorkerNodepool("kworkerNp", KarbonWorkerNodepoolArgs.builder()
                .ahvConfig(KarbonWorkerNodepoolAhvConfigArgs.builder()
                    .cpu(4)
                    .diskMib(122880)
                    .memoryMib(8192)
                    .networkUuid("61213511-6383-4a38-9ac8-4a552c0e5865")
                    .build())
                .clusterName("karbon")
                .labels(Map.ofEntries(
                    Map.entry("k1", "v1"),
                    Map.entry("k2", "v2")
                ))
                .numInstances(1)
                .build());
    
        }
    }
    
    resources:
      kworkerNp:
        type: nutanix:KarbonWorkerNodepool
        properties:
          ahvConfig:
            cpu: 4
            diskMib: 122880
            memoryMib: 8192
            networkUuid: 61213511-6383-4a38-9ac8-4a552c0e5865
          clusterName: karbon
          labels:
            k1: v1
            k2: v2
          numInstances: 1
    

    Create KarbonWorkerNodepool Resource

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

    Constructor syntax

    new KarbonWorkerNodepool(name: string, args: KarbonWorkerNodepoolArgs, opts?: CustomResourceOptions);
    @overload
    def KarbonWorkerNodepool(resource_name: str,
                             args: KarbonWorkerNodepoolArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def KarbonWorkerNodepool(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             cluster_name: Optional[str] = None,
                             num_instances: Optional[int] = None,
                             ahv_config: Optional[KarbonWorkerNodepoolAhvConfigArgs] = None,
                             labels: Optional[Mapping[str, Any]] = None,
                             name: Optional[str] = None,
                             node_os_version: Optional[str] = None)
    func NewKarbonWorkerNodepool(ctx *Context, name string, args KarbonWorkerNodepoolArgs, opts ...ResourceOption) (*KarbonWorkerNodepool, error)
    public KarbonWorkerNodepool(string name, KarbonWorkerNodepoolArgs args, CustomResourceOptions? opts = null)
    public KarbonWorkerNodepool(String name, KarbonWorkerNodepoolArgs args)
    public KarbonWorkerNodepool(String name, KarbonWorkerNodepoolArgs args, CustomResourceOptions options)
    
    type: nutanix:KarbonWorkerNodepool
    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 KarbonWorkerNodepoolArgs
    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 KarbonWorkerNodepoolArgs
    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 KarbonWorkerNodepoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KarbonWorkerNodepoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KarbonWorkerNodepoolArgs
    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 karbonWorkerNodepoolResource = new Nutanix.KarbonWorkerNodepool("karbonWorkerNodepoolResource", new()
    {
        ClusterName = "string",
        NumInstances = 0,
        AhvConfig = new Nutanix.Inputs.KarbonWorkerNodepoolAhvConfigArgs
        {
            NetworkUuid = "string",
            Cpu = 0,
            DiskMib = 0,
            IscsiNetworkUuid = "string",
            MemoryMib = 0,
            PrismElementClusterUuid = "string",
        },
        Labels = 
        {
            { "string", "any" },
        },
        Name = "string",
        NodeOsVersion = "string",
    });
    
    example, err := nutanix.NewKarbonWorkerNodepool(ctx, "karbonWorkerNodepoolResource", &nutanix.KarbonWorkerNodepoolArgs{
    	ClusterName:  pulumi.String("string"),
    	NumInstances: pulumi.Int(0),
    	AhvConfig: &nutanix.KarbonWorkerNodepoolAhvConfigArgs{
    		NetworkUuid:             pulumi.String("string"),
    		Cpu:                     pulumi.Int(0),
    		DiskMib:                 pulumi.Int(0),
    		IscsiNetworkUuid:        pulumi.String("string"),
    		MemoryMib:               pulumi.Int(0),
    		PrismElementClusterUuid: pulumi.String("string"),
    	},
    	Labels: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Name:          pulumi.String("string"),
    	NodeOsVersion: pulumi.String("string"),
    })
    
    var karbonWorkerNodepoolResource = new KarbonWorkerNodepool("karbonWorkerNodepoolResource", KarbonWorkerNodepoolArgs.builder()
        .clusterName("string")
        .numInstances(0)
        .ahvConfig(KarbonWorkerNodepoolAhvConfigArgs.builder()
            .networkUuid("string")
            .cpu(0)
            .diskMib(0)
            .iscsiNetworkUuid("string")
            .memoryMib(0)
            .prismElementClusterUuid("string")
            .build())
        .labels(Map.of("string", "any"))
        .name("string")
        .nodeOsVersion("string")
        .build());
    
    karbon_worker_nodepool_resource = nutanix.KarbonWorkerNodepool("karbonWorkerNodepoolResource",
        cluster_name="string",
        num_instances=0,
        ahv_config=nutanix.KarbonWorkerNodepoolAhvConfigArgs(
            network_uuid="string",
            cpu=0,
            disk_mib=0,
            iscsi_network_uuid="string",
            memory_mib=0,
            prism_element_cluster_uuid="string",
        ),
        labels={
            "string": "any",
        },
        name="string",
        node_os_version="string")
    
    const karbonWorkerNodepoolResource = new nutanix.KarbonWorkerNodepool("karbonWorkerNodepoolResource", {
        clusterName: "string",
        numInstances: 0,
        ahvConfig: {
            networkUuid: "string",
            cpu: 0,
            diskMib: 0,
            iscsiNetworkUuid: "string",
            memoryMib: 0,
            prismElementClusterUuid: "string",
        },
        labels: {
            string: "any",
        },
        name: "string",
        nodeOsVersion: "string",
    });
    
    type: nutanix:KarbonWorkerNodepool
    properties:
        ahvConfig:
            cpu: 0
            diskMib: 0
            iscsiNetworkUuid: string
            memoryMib: 0
            networkUuid: string
            prismElementClusterUuid: string
        clusterName: string
        labels:
            string: any
        name: string
        nodeOsVersion: string
        numInstances: 0
    

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

    ClusterName string
    Kubernetes cluster name
    NumInstances int
    number of node instances
    AhvConfig PiersKarsenbarg.Nutanix.Inputs.KarbonWorkerNodepoolAhvConfig
    VM configuration in AHV.
    Labels Dictionary<string, object>
    labels of node
    Name string
    unique worker nodepool name
    NodeOsVersion string
    The version of the node OS image
    ClusterName string
    Kubernetes cluster name
    NumInstances int
    number of node instances
    AhvConfig KarbonWorkerNodepoolAhvConfigArgs
    VM configuration in AHV.
    Labels map[string]interface{}
    labels of node
    Name string
    unique worker nodepool name
    NodeOsVersion string
    The version of the node OS image
    clusterName String
    Kubernetes cluster name
    numInstances Integer
    number of node instances
    ahvConfig KarbonWorkerNodepoolAhvConfig
    VM configuration in AHV.
    labels Map<String,Object>
    labels of node
    name String
    unique worker nodepool name
    nodeOsVersion String
    The version of the node OS image
    clusterName string
    Kubernetes cluster name
    numInstances number
    number of node instances
    ahvConfig KarbonWorkerNodepoolAhvConfig
    VM configuration in AHV.
    labels {[key: string]: any}
    labels of node
    name string
    unique worker nodepool name
    nodeOsVersion string
    The version of the node OS image
    cluster_name str
    Kubernetes cluster name
    num_instances int
    number of node instances
    ahv_config KarbonWorkerNodepoolAhvConfigArgs
    VM configuration in AHV.
    labels Mapping[str, Any]
    labels of node
    name str
    unique worker nodepool name
    node_os_version str
    The version of the node OS image
    clusterName String
    Kubernetes cluster name
    numInstances Number
    number of node instances
    ahvConfig Property Map
    VM configuration in AHV.
    labels Map<Any>
    labels of node
    name String
    unique worker nodepool name
    nodeOsVersion String
    The version of the node OS image

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Nodes List<PiersKarsenbarg.Nutanix.Outputs.KarbonWorkerNodepoolNode>
    List of node details of pool.
    Id string
    The provider-assigned unique ID for this managed resource.
    Nodes []KarbonWorkerNodepoolNode
    List of node details of pool.
    id String
    The provider-assigned unique ID for this managed resource.
    nodes List<KarbonWorkerNodepoolNode>
    List of node details of pool.
    id string
    The provider-assigned unique ID for this managed resource.
    nodes KarbonWorkerNodepoolNode[]
    List of node details of pool.
    id str
    The provider-assigned unique ID for this managed resource.
    nodes Sequence[KarbonWorkerNodepoolNode]
    List of node details of pool.
    id String
    The provider-assigned unique ID for this managed resource.
    nodes List<Property Map>
    List of node details of pool.

    Look up Existing KarbonWorkerNodepool Resource

    Get an existing KarbonWorkerNodepool 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?: KarbonWorkerNodepoolState, opts?: CustomResourceOptions): KarbonWorkerNodepool
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ahv_config: Optional[KarbonWorkerNodepoolAhvConfigArgs] = None,
            cluster_name: Optional[str] = None,
            labels: Optional[Mapping[str, Any]] = None,
            name: Optional[str] = None,
            node_os_version: Optional[str] = None,
            nodes: Optional[Sequence[KarbonWorkerNodepoolNodeArgs]] = None,
            num_instances: Optional[int] = None) -> KarbonWorkerNodepool
    func GetKarbonWorkerNodepool(ctx *Context, name string, id IDInput, state *KarbonWorkerNodepoolState, opts ...ResourceOption) (*KarbonWorkerNodepool, error)
    public static KarbonWorkerNodepool Get(string name, Input<string> id, KarbonWorkerNodepoolState? state, CustomResourceOptions? opts = null)
    public static KarbonWorkerNodepool get(String name, Output<String> id, KarbonWorkerNodepoolState 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:
    AhvConfig PiersKarsenbarg.Nutanix.Inputs.KarbonWorkerNodepoolAhvConfig
    VM configuration in AHV.
    ClusterName string
    Kubernetes cluster name
    Labels Dictionary<string, object>
    labels of node
    Name string
    unique worker nodepool name
    NodeOsVersion string
    The version of the node OS image
    Nodes List<PiersKarsenbarg.Nutanix.Inputs.KarbonWorkerNodepoolNode>
    List of node details of pool.
    NumInstances int
    number of node instances
    AhvConfig KarbonWorkerNodepoolAhvConfigArgs
    VM configuration in AHV.
    ClusterName string
    Kubernetes cluster name
    Labels map[string]interface{}
    labels of node
    Name string
    unique worker nodepool name
    NodeOsVersion string
    The version of the node OS image
    Nodes []KarbonWorkerNodepoolNodeArgs
    List of node details of pool.
    NumInstances int
    number of node instances
    ahvConfig KarbonWorkerNodepoolAhvConfig
    VM configuration in AHV.
    clusterName String
    Kubernetes cluster name
    labels Map<String,Object>
    labels of node
    name String
    unique worker nodepool name
    nodeOsVersion String
    The version of the node OS image
    nodes List<KarbonWorkerNodepoolNode>
    List of node details of pool.
    numInstances Integer
    number of node instances
    ahvConfig KarbonWorkerNodepoolAhvConfig
    VM configuration in AHV.
    clusterName string
    Kubernetes cluster name
    labels {[key: string]: any}
    labels of node
    name string
    unique worker nodepool name
    nodeOsVersion string
    The version of the node OS image
    nodes KarbonWorkerNodepoolNode[]
    List of node details of pool.
    numInstances number
    number of node instances
    ahv_config KarbonWorkerNodepoolAhvConfigArgs
    VM configuration in AHV.
    cluster_name str
    Kubernetes cluster name
    labels Mapping[str, Any]
    labels of node
    name str
    unique worker nodepool name
    node_os_version str
    The version of the node OS image
    nodes Sequence[KarbonWorkerNodepoolNodeArgs]
    List of node details of pool.
    num_instances int
    number of node instances
    ahvConfig Property Map
    VM configuration in AHV.
    clusterName String
    Kubernetes cluster name
    labels Map<Any>
    labels of node
    name String
    unique worker nodepool name
    nodeOsVersion String
    The version of the node OS image
    nodes List<Property Map>
    List of node details of pool.
    numInstances Number
    number of node instances

    Supporting Types

    KarbonWorkerNodepoolAhvConfig, KarbonWorkerNodepoolAhvConfigArgs

    NetworkUuid string
    • (Required) The UUID of the network for the VMs deployed with this resource configuration.
    Cpu int
    • (Required) The number of VCPUs allocated for each VM on the PE cluster.
    DiskMib int
    • (Optional) Size of local storage for each VM on the PE cluster in MiB.
    IscsiNetworkUuid string
    VM network UUID for isolating iscsi data traffic.
    MemoryMib int
    • (Optional) Memory allocated for each VM on the PE cluster in MiB.
    PrismElementClusterUuid string
    • (Optional) The unique universal identifier (UUID) of the Prism Element
    NetworkUuid string
    • (Required) The UUID of the network for the VMs deployed with this resource configuration.
    Cpu int
    • (Required) The number of VCPUs allocated for each VM on the PE cluster.
    DiskMib int
    • (Optional) Size of local storage for each VM on the PE cluster in MiB.
    IscsiNetworkUuid string
    VM network UUID for isolating iscsi data traffic.
    MemoryMib int
    • (Optional) Memory allocated for each VM on the PE cluster in MiB.
    PrismElementClusterUuid string
    • (Optional) The unique universal identifier (UUID) of the Prism Element
    networkUuid String
    • (Required) The UUID of the network for the VMs deployed with this resource configuration.
    cpu Integer
    • (Required) The number of VCPUs allocated for each VM on the PE cluster.
    diskMib Integer
    • (Optional) Size of local storage for each VM on the PE cluster in MiB.
    iscsiNetworkUuid String
    VM network UUID for isolating iscsi data traffic.
    memoryMib Integer
    • (Optional) Memory allocated for each VM on the PE cluster in MiB.
    prismElementClusterUuid String
    • (Optional) The unique universal identifier (UUID) of the Prism Element
    networkUuid string
    • (Required) The UUID of the network for the VMs deployed with this resource configuration.
    cpu number
    • (Required) The number of VCPUs allocated for each VM on the PE cluster.
    diskMib number
    • (Optional) Size of local storage for each VM on the PE cluster in MiB.
    iscsiNetworkUuid string
    VM network UUID for isolating iscsi data traffic.
    memoryMib number
    • (Optional) Memory allocated for each VM on the PE cluster in MiB.
    prismElementClusterUuid string
    • (Optional) The unique universal identifier (UUID) of the Prism Element
    network_uuid str
    • (Required) The UUID of the network for the VMs deployed with this resource configuration.
    cpu int
    • (Required) The number of VCPUs allocated for each VM on the PE cluster.
    disk_mib int
    • (Optional) Size of local storage for each VM on the PE cluster in MiB.
    iscsi_network_uuid str
    VM network UUID for isolating iscsi data traffic.
    memory_mib int
    • (Optional) Memory allocated for each VM on the PE cluster in MiB.
    prism_element_cluster_uuid str
    • (Optional) The unique universal identifier (UUID) of the Prism Element
    networkUuid String
    • (Required) The UUID of the network for the VMs deployed with this resource configuration.
    cpu Number
    • (Required) The number of VCPUs allocated for each VM on the PE cluster.
    diskMib Number
    • (Optional) Size of local storage for each VM on the PE cluster in MiB.
    iscsiNetworkUuid String
    VM network UUID for isolating iscsi data traffic.
    memoryMib Number
    • (Optional) Memory allocated for each VM on the PE cluster in MiB.
    prismElementClusterUuid String
    • (Optional) The unique universal identifier (UUID) of the Prism Element

    KarbonWorkerNodepoolNode, KarbonWorkerNodepoolNodeArgs

    Hostname string
    hostname of node
    Ipv4Address string
    ipv4 address of node
    Hostname string
    hostname of node
    Ipv4Address string
    ipv4 address of node
    hostname String
    hostname of node
    ipv4Address String
    ipv4 address of node
    hostname string
    hostname of node
    ipv4Address string
    ipv4 address of node
    hostname str
    hostname of node
    ipv4_address str
    ipv4 address of node
    hostname String
    hostname of node
    ipv4Address String
    ipv4 address of node

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg