vsphere.ComputeClusterVmAffinityRule
Explore with Pulumi AI
The vsphere.ComputeClusterVmAffinityRule
resource can be used to
manage virtual machine affinity rules in a cluster, either created by the
vsphere.ComputeCluster
resource or looked up
by the vsphere.ComputeCluster
data source.
This rule can be used to tell a set of virtual machines to run together on the
same host within a cluster. When configured, DRS will make a best effort to
ensure that the virtual machines run on the same host, or prevent any operation
that would keep that from happening, depending on the value of the
mandatory
flag.
An affinity rule can only be used to place virtual machines on the same non-specific hosts. It cannot be used to pin virtual machines to a host. To enable this capability, use the
vsphere.ComputeClusterVmHostRule
resource.
NOTE: This resource requires vCenter Server and is not available on direct ESXi host connections.
NOTE: vSphere DRS requires a vSphere Enterprise Plus license.
Example Usage
The following example creates two virtual machines in a cluster using the
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using VSphere = Pulumi.VSphere;
return await Deployment.RunAsync(() =>
{
var datacenter = VSphere.GetDatacenter.Invoke(new()
{
Name = "dc-01",
});
var datastore = VSphere.GetDatastore.Invoke(new()
{
Name = "datastore-01",
DatacenterId = datacenter.Apply(getDatacenterResult => getDatacenterResult.Id),
});
var cluster = VSphere.GetComputeCluster.Invoke(new()
{
Name = "cluster-01",
DatacenterId = datacenter.Apply(getDatacenterResult => getDatacenterResult.Id),
});
var network = VSphere.GetNetwork.Invoke(new()
{
Name = "VM Network",
DatacenterId = datacenter.Apply(getDatacenterResult => getDatacenterResult.Id),
});
var vm = new List<VSphere.VirtualMachine>();
for (var rangeIndex = 0; rangeIndex < 2; rangeIndex++)
{
var range = new { Value = rangeIndex };
vm.Add(new VSphere.VirtualMachine($"vm-{range.Value}", new()
{
ResourcePoolId = cluster.Apply(getComputeClusterResult => getComputeClusterResult.ResourcePoolId),
DatastoreId = datastore.Apply(getDatastoreResult => getDatastoreResult.Id),
NumCpus = 1,
Memory = 1024,
GuestId = "otherLinux64Guest",
NetworkInterfaces = new[]
{
new VSphere.Inputs.VirtualMachineNetworkInterfaceArgs
{
NetworkId = network.Apply(getNetworkResult => getNetworkResult.Id),
},
},
Disks = new[]
{
new VSphere.Inputs.VirtualMachineDiskArgs
{
Label = "disk0",
Size = 20,
},
},
}));
}
var vmAffinityRule = new VSphere.ComputeClusterVmAffinityRule("vmAffinityRule", new()
{
ComputeClusterId = cluster.Apply(getComputeClusterResult => getComputeClusterResult.Id),
VirtualMachineIds = vm.Select((value, i) => new { Key = i.ToString(), Value = pair.Value }).Select(v =>
{
return v.Id;
}).ToList(),
});
});
package main
import (
"github.com/pulumi/pulumi-vsphere/sdk/v4/go/vsphere"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
datacenter, err := vsphere.LookupDatacenter(ctx, &vsphere.LookupDatacenterArgs{
Name: pulumi.StringRef("dc-01"),
}, nil)
if err != nil {
return err
}
datastore, err := vsphere.GetDatastore(ctx, &vsphere.GetDatastoreArgs{
Name: "datastore-01",
DatacenterId: pulumi.StringRef(datacenter.Id),
}, nil)
if err != nil {
return err
}
cluster, err := vsphere.LookupComputeCluster(ctx, &vsphere.LookupComputeClusterArgs{
Name: "cluster-01",
DatacenterId: pulumi.StringRef(datacenter.Id),
}, nil)
if err != nil {
return err
}
network, err := vsphere.GetNetwork(ctx, &vsphere.GetNetworkArgs{
Name: "VM Network",
DatacenterId: pulumi.StringRef(datacenter.Id),
}, nil)
if err != nil {
return err
}
var vm []*vsphere.VirtualMachine
for index := 0; index < 2; index++ {
key0 := index
_ := index
__res, err := vsphere.NewVirtualMachine(ctx, fmt.Sprintf("vm-%v", key0), &vsphere.VirtualMachineArgs{
ResourcePoolId: *pulumi.String(cluster.ResourcePoolId),
DatastoreId: *pulumi.String(datastore.Id),
NumCpus: pulumi.Int(1),
Memory: pulumi.Int(1024),
GuestId: pulumi.String("otherLinux64Guest"),
NetworkInterfaces: vsphere.VirtualMachineNetworkInterfaceArray{
&vsphere.VirtualMachineNetworkInterfaceArgs{
NetworkId: *pulumi.String(network.Id),
},
},
Disks: vsphere.VirtualMachineDiskArray{
&vsphere.VirtualMachineDiskArgs{
Label: pulumi.String("disk0"),
Size: pulumi.Int(20),
},
},
})
if err != nil {
return err
}
vm = append(vm, __res)
}
_, err = vsphere.NewComputeClusterVmAffinityRule(ctx, "vmAffinityRule", &vsphere.ComputeClusterVmAffinityRuleArgs{
ComputeClusterId: *pulumi.String(cluster.Id),
VirtualMachineIds: "TODO: For expression",
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_vsphere as vsphere
datacenter = vsphere.get_datacenter(name="dc-01")
datastore = vsphere.get_datastore(name="datastore-01",
datacenter_id=datacenter.id)
cluster = vsphere.get_compute_cluster(name="cluster-01",
datacenter_id=datacenter.id)
network = vsphere.get_network(name="VM Network",
datacenter_id=datacenter.id)
vm = []
for range in [{"value": i} for i in range(0, 2)]:
vm.append(vsphere.VirtualMachine(f"vm-{range['value']}",
resource_pool_id=cluster.resource_pool_id,
datastore_id=datastore.id,
num_cpus=1,
memory=1024,
guest_id="otherLinux64Guest",
network_interfaces=[vsphere.VirtualMachineNetworkInterfaceArgs(
network_id=network.id,
)],
disks=[vsphere.VirtualMachineDiskArgs(
label="disk0",
size=20,
)]))
vm_affinity_rule = vsphere.ComputeClusterVmAffinityRule("vmAffinityRule",
compute_cluster_id=cluster.id,
virtual_machine_ids=[v.id for k, v in vm])
import * as pulumi from "@pulumi/pulumi";
import * as vsphere from "@pulumi/vsphere";
const datacenter = vsphere.getDatacenter({
name: "dc-01",
});
const datastore = datacenter.then(datacenter => vsphere.getDatastore({
name: "datastore-01",
datacenterId: datacenter.id,
}));
const cluster = datacenter.then(datacenter => vsphere.getComputeCluster({
name: "cluster-01",
datacenterId: datacenter.id,
}));
const network = datacenter.then(datacenter => vsphere.getNetwork({
name: "VM Network",
datacenterId: datacenter.id,
}));
const vm: vsphere.VirtualMachine[] = [];
for (const range = {value: 0}; range.value < 2; range.value++) {
vm.push(new vsphere.VirtualMachine(`vm-${range.value}`, {
resourcePoolId: cluster.then(cluster => cluster.resourcePoolId),
datastoreId: datastore.then(datastore => datastore.id),
numCpus: 1,
memory: 1024,
guestId: "otherLinux64Guest",
networkInterfaces: [{
networkId: network.then(network => network.id),
}],
disks: [{
label: "disk0",
size: 20,
}],
}));
}
const vmAffinityRule = new vsphere.ComputeClusterVmAffinityRule("vmAffinityRule", {
computeClusterId: cluster.then(cluster => cluster.id),
virtualMachineIds: vm.map((v, k) => [k, v]).map(([, ]) => (v.id)),
});
Coming soon!
data source.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using VSphere = Pulumi.VSphere;
return await Deployment.RunAsync(() =>
{
var vms = new[]
{
"foo-0",
"foo-1",
};
var datacenter = VSphere.GetDatacenter.Invoke(new()
{
Name = "dc-01",
});
var cluster = VSphere.GetComputeCluster.Invoke(new()
{
Name = "cluster-01",
DatacenterId = datacenter.Apply(getDatacenterResult => getDatacenterResult.Id),
});
var vmsVirtualMachine = "TODO: Range range( length(vms)
) false".Select(__index =>
{
return VSphere.GetVirtualMachine.Invoke(new()
{
Name = vms[__index],
DatacenterId = _arg0_.Id,
});
}).ToList();
var vmAffinityRule = new VSphere.ComputeClusterVmAffinityRule("vmAffinityRule", new()
{
Enabled = true,
ComputeClusterId = cluster.Apply(getComputeClusterResult => getComputeClusterResult.Id),
VirtualMachineIds = vmsVirtualMachine.Select(__item => __item.Id).ToList(),
});
});
package main
import (
"github.com/pulumi/pulumi-vsphere/sdk/v4/go/vsphere"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
vms := []string{
"foo-0",
"foo-1",
}
datacenter, err := vsphere.LookupDatacenter(ctx, &vsphere.LookupDatacenterArgs{
Name: pulumi.StringRef("dc-01"),
}, nil)
if err != nil {
return err
}
cluster, err := vsphere.LookupComputeCluster(ctx, &vsphere.LookupComputeClusterArgs{
Name: "cluster-01",
DatacenterId: pulumi.StringRef(datacenter.Id),
}, nil)
if err != nil {
return err
}
vmsVirtualMachine := "TODO: For expression"
var splat0 []*string
for _, val0 := range vmsVirtualMachine {
splat0 = append(splat0, val0.Id)
}
_, err = vsphere.NewComputeClusterVmAffinityRule(ctx, "vmAffinityRule", &vsphere.ComputeClusterVmAffinityRuleArgs{
Enabled: pulumi.Bool(true),
ComputeClusterId: *pulumi.String(cluster.Id),
VirtualMachineIds: []*pulumi.String(splat0),
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_vsphere as vsphere
vms = [
"foo-0",
"foo-1",
]
datacenter = vsphere.get_datacenter(name="dc-01")
cluster = vsphere.get_compute_cluster(name="cluster-01",
datacenter_id=datacenter.id)
vms_virtual_machine = [vsphere.get_virtual_machine(name=vms[__index],
datacenter_id=datacenter.id) for __index in range(len(vms))]
vm_affinity_rule = vsphere.ComputeClusterVmAffinityRule("vmAffinityRule",
enabled=True,
compute_cluster_id=cluster.id,
virtual_machine_ids=[__item.id for __item in vms_virtual_machine])
import * as pulumi from "@pulumi/pulumi";
import * as vsphere from "@pulumi/vsphere";
const vms = [
"foo-0",
"foo-1",
];
const datacenter = vsphere.getDatacenter({
name: "dc-01",
});
const cluster = datacenter.then(datacenter => vsphere.getComputeCluster({
name: "cluster-01",
datacenterId: datacenter.id,
}));
const vmsVirtualMachine = (new Array(vms.length)).map((_, i) => i).map(__index => (vsphere.getVirtualMachine({
name: vms[__index],
datacenterId: _arg0_.id,
})));
const vmAffinityRule = new vsphere.ComputeClusterVmAffinityRule("vmAffinityRule", {
enabled: true,
computeClusterId: cluster.then(cluster => cluster.id),
virtualMachineIds: vmsVirtualMachine.map(__item => __item.id),
});
Coming soon!
Create ComputeClusterVmAffinityRule Resource
new ComputeClusterVmAffinityRule(name: string, args: ComputeClusterVmAffinityRuleArgs, opts?: CustomResourceOptions);
@overload
def ComputeClusterVmAffinityRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
compute_cluster_id: Optional[str] = None,
enabled: Optional[bool] = None,
mandatory: Optional[bool] = None,
name: Optional[str] = None,
virtual_machine_ids: Optional[Sequence[str]] = None)
@overload
def ComputeClusterVmAffinityRule(resource_name: str,
args: ComputeClusterVmAffinityRuleArgs,
opts: Optional[ResourceOptions] = None)
func NewComputeClusterVmAffinityRule(ctx *Context, name string, args ComputeClusterVmAffinityRuleArgs, opts ...ResourceOption) (*ComputeClusterVmAffinityRule, error)
public ComputeClusterVmAffinityRule(string name, ComputeClusterVmAffinityRuleArgs args, CustomResourceOptions? opts = null)
public ComputeClusterVmAffinityRule(String name, ComputeClusterVmAffinityRuleArgs args)
public ComputeClusterVmAffinityRule(String name, ComputeClusterVmAffinityRuleArgs args, CustomResourceOptions options)
type: vsphere:ComputeClusterVmAffinityRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ComputeClusterVmAffinityRuleArgs
- 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 ComputeClusterVmAffinityRuleArgs
- 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 ComputeClusterVmAffinityRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ComputeClusterVmAffinityRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ComputeClusterVmAffinityRuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ComputeClusterVmAffinityRule 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 ComputeClusterVmAffinityRule resource accepts the following input properties:
- Compute
Cluster stringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- Virtual
Machine List<string>Ids The UUIDs of the virtual machines to run on the same host together.
- Enabled bool
Enable this rule in the cluster. Default:
true
.- Mandatory bool
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- Name string
The name of the rule. This must be unique in the cluster.
- Compute
Cluster stringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- Virtual
Machine []stringIds The UUIDs of the virtual machines to run on the same host together.
- Enabled bool
Enable this rule in the cluster. Default:
true
.- Mandatory bool
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- Name string
The name of the rule. This must be unique in the cluster.
- compute
Cluster StringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- virtual
Machine List<String>Ids The UUIDs of the virtual machines to run on the same host together.
- enabled Boolean
Enable this rule in the cluster. Default:
true
.- mandatory Boolean
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- name String
The name of the rule. This must be unique in the cluster.
- compute
Cluster stringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- virtual
Machine string[]Ids The UUIDs of the virtual machines to run on the same host together.
- enabled boolean
Enable this rule in the cluster. Default:
true
.- mandatory boolean
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- name string
The name of the rule. This must be unique in the cluster.
- compute_
cluster_ strid The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- virtual_
machine_ Sequence[str]ids The UUIDs of the virtual machines to run on the same host together.
- enabled bool
Enable this rule in the cluster. Default:
true
.- mandatory bool
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- name str
The name of the rule. This must be unique in the cluster.
- compute
Cluster StringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- virtual
Machine List<String>Ids The UUIDs of the virtual machines to run on the same host together.
- enabled Boolean
Enable this rule in the cluster. Default:
true
.- mandatory Boolean
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- name String
The name of the rule. This must be unique in the cluster.
Outputs
All input properties are implicitly available as output properties. Additionally, the ComputeClusterVmAffinityRule resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing ComputeClusterVmAffinityRule Resource
Get an existing ComputeClusterVmAffinityRule 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?: ComputeClusterVmAffinityRuleState, opts?: CustomResourceOptions): ComputeClusterVmAffinityRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compute_cluster_id: Optional[str] = None,
enabled: Optional[bool] = None,
mandatory: Optional[bool] = None,
name: Optional[str] = None,
virtual_machine_ids: Optional[Sequence[str]] = None) -> ComputeClusterVmAffinityRule
func GetComputeClusterVmAffinityRule(ctx *Context, name string, id IDInput, state *ComputeClusterVmAffinityRuleState, opts ...ResourceOption) (*ComputeClusterVmAffinityRule, error)
public static ComputeClusterVmAffinityRule Get(string name, Input<string> id, ComputeClusterVmAffinityRuleState? state, CustomResourceOptions? opts = null)
public static ComputeClusterVmAffinityRule get(String name, Output<String> id, ComputeClusterVmAffinityRuleState 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.
- Compute
Cluster stringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- Enabled bool
Enable this rule in the cluster. Default:
true
.- Mandatory bool
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- Name string
The name of the rule. This must be unique in the cluster.
- Virtual
Machine List<string>Ids The UUIDs of the virtual machines to run on the same host together.
- Compute
Cluster stringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- Enabled bool
Enable this rule in the cluster. Default:
true
.- Mandatory bool
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- Name string
The name of the rule. This must be unique in the cluster.
- Virtual
Machine []stringIds The UUIDs of the virtual machines to run on the same host together.
- compute
Cluster StringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- enabled Boolean
Enable this rule in the cluster. Default:
true
.- mandatory Boolean
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- name String
The name of the rule. This must be unique in the cluster.
- virtual
Machine List<String>Ids The UUIDs of the virtual machines to run on the same host together.
- compute
Cluster stringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- enabled boolean
Enable this rule in the cluster. Default:
true
.- mandatory boolean
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- name string
The name of the rule. This must be unique in the cluster.
- virtual
Machine string[]Ids The UUIDs of the virtual machines to run on the same host together.
- compute_
cluster_ strid The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- enabled bool
Enable this rule in the cluster. Default:
true
.- mandatory bool
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- name str
The name of the rule. This must be unique in the cluster.
- virtual_
machine_ Sequence[str]ids The UUIDs of the virtual machines to run on the same host together.
- compute
Cluster StringId The managed object reference ID of the cluster to put the group in. Forces a new resource if changed.
- enabled Boolean
Enable this rule in the cluster. Default:
true
.- mandatory Boolean
When this value is
true
, prevents any virtual machine operations that may violate this rule. Default:false
.NOTE: The namespace for rule names on this resource (defined by the
name
argument) is shared with all rules in the cluster - consider this when naming your rules.- name String
The name of the rule. This must be unique in the cluster.
- virtual
Machine List<String>Ids The UUIDs of the virtual machines to run on the same host together.
Package Details
- Repository
- vSphere pulumi/pulumi-vsphere
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
vsphere
Terraform Provider.