Skip to content

jmos5156/xFailOverCluster

 
 

Repository files navigation

xFailOverCluster

The xFailOverCluster module contains DSC resources for deployment and configuration of Failover Clustering.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Branches

master

Build status codecov

This is the branch containing the latest release - no contributions should be made directly to this branch.

dev

Build status codecov

This is the development branch to which contributions should be proposed by contributors as pull requests. This development branch will periodically be merged to the master branch, and be released to PowerShell Gallery.

Contributing

Please check out common DSC Resources contributing guidelines.

Change log

A full list of changes in each version can be found in the change log.

Resources

xCluster

Used to configure a failover cluster. If the cluster does not exist, it will be created in the domain and the static IP address will be assigned to the cluster. When the cluster exist (either it was created or already existed), it will add the target node ($env:COMPUTERNAME) to the cluster.

Requirements for xCluster

  • Target machine must be running Windows Server 2008 R2 or later.

Parameters for xCluster

  • [String] Name (Key): Name of the failover cluster.
  • [String] StaticIPAddress (Required): Static IP Address of the failover cluster.
  • [String] DomainAdministratorCredential (Required): Credential used to create the failover cluster in Active Directory.

Examples for xCluster

xClusterDisk

Configures shared disks in a cluster.

Requirements for xClusterDisk

  • Target machine must be running Windows Server 2008 R2 or later.

Parameters for xClusterDisk

  • [String] Number (Key): The disk number of the cluster disk.
  • [String] Ensure (Write): Define if the cluster disk should be added (Present) or removed (Absent). Default value is 'Present'. { Present | Absent }
  • [String] Label (Write): The disk label that should be assigned to the disk on the Failover Cluster disk resource.

Examples for xClusterDisk

xClusterNetwork

Configures a cluster network in a failover cluster.

This resource is only able to change properties on cluster networks. To add or remove networks from the cluster, add or remove them from the cluster members. By adding a new subnet on one of the cluster nodes, the network will be added to the cluster, and metadata can be set using the xClusterNetwork module.

Requirements for xClusterNetwork

  • Target machine must be running Windows Server 2008 R2 or later.

Parameters for xClusterNetwork

  • [String] Address (Key): The address for the cluster network in the format '10.0.0.0'.
  • [String] AddressMask (Key): The address mask for the cluster network in the format '255.255.255.0'.
  • [String] Name (Write): The name of the cluster network. If the cluster network name is not in desired state it will be renamed to match this name.
  • [String] Role (Write): The role of the cluster network. If the cluster network role is not in desired state it will changed to match this role. { 0 | 1 | 3 }.
  • [String] Metric (Write): The metric number for the cluster network. If the cluster network metric number is not in desired state it will be changed to match this metric number.

Role parameter

This parameter sets the role of the cluster network. If the cluster network role is not in desired state it will change to match this role.

The cluster network role can be set to either the value 0, 1 or 3.

0 = Do not allow cluster network communication 1 = Allow cluster network communication only 3 = Allow cluster network communication and client connectivity

See this article for more information about cluster network role values; Configuring Windows Failover Cluster Networks

Examples for xClusterNetwork

xClusterPreferredOwner

Configures preferred owners of a cluster group and cluster resources in a failover cluster.

Requirements for xClusterPreferredOwner

  • Target machine must be running Windows Server 2008 R2 or later.

Parameters for xClusterPreferredOwner

  • [String] ClusterGroup (Key): Name of the cluster group.
  • [String] ClusterName (Key): Name of the cluster.
  • [String[]] Nodes (Required): The nodes to set as owners.
  • [String[]] ClusterResources (Write): The resources to set preferred owners on.
  • [String] Ensure (Write): If the preferred owners should be present or absent. Default value is 'Present'. { Present | Absent }

Examples for xClusterPreferredOwner

xClusterQuorum

Configures quorum in a cluster.

Requirements for xClusterQuorum

  • Target machine must be running Windows Server 2008 R2 or later.

Parameters for xClusterQuorum

  • [String] IsSingleInstance (Key): Specifies the resource is a single instance, the value must be 'Yes'.
  • [String] Type (Write): Quorum type to use. { NodeMajority | NodeAndDiskMajority | NodeAndFileShareMajority, DiskOnly }.
  • [String] Resource (Write): The name of the disk or file share resource to use as witness. This parameter is optional if the quorum type is set to NodeMajority.

Examples for xClusterQuorum

xWaitForCluster

Ensures that a node waits for a remote cluster is created.

Requirements for xWaitForCluster

  • Target machine must be running Windows Server 2008 R2 or later.

Parameters for xWaitForCluster

  • [String] Name (Key): Name of the cluster to wait for.
  • [UInt64] RetryIntervalSec (Write): Interval to check for cluster existence. Default values is 10 seconds.
  • [UInt32] RetryCount (Write): Maximum number of retries to check for cluster existence. Default value is 50 retries.

Examples for xWaitForCluster

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PowerShell 100.0%