├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── General.md │ ├── Problem_with_resource.yml │ ├── Resource_proposal.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── analyzersettings.psd1 ├── extensions.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GitVersion.yml ├── HISTORIC_CHANGELOG.md ├── LICENSE ├── README.md ├── RequiredModules.psd1 ├── Resolve-Dependency.ps1 ├── Resolve-Dependency.psd1 ├── SECURITY.md ├── azure-pipelines.yml ├── codecov.yml ├── source ├── DSCResources │ ├── DSC_Cluster │ │ ├── DSC_Cluster.psm1 │ │ ├── DSC_Cluster.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_Cluster.strings.psd1 │ ├── DSC_ClusterDisk │ │ ├── DSC_ClusterDisk.psm1 │ │ ├── DSC_ClusterDisk.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_ClusterDisk.strings.psd1 │ ├── DSC_ClusterIPAddress │ │ ├── DSC_ClusterIPAddress.psm1 │ │ ├── DSC_ClusterIPAddress.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_ClusterIPAddress.strings.psd1 │ ├── DSC_ClusterNetwork │ │ ├── DSC_ClusterNetwork.psm1 │ │ ├── DSC_ClusterNetwork.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_ClusterNetwork.strings.psd1 │ ├── DSC_ClusterPreferredOwner │ │ ├── DSC_ClusterPreferredOwner.psm1 │ │ ├── DSC_ClusterPreferredOwner.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_ClusterPreferredOwner.strings.psd1 │ ├── DSC_ClusterProperty │ │ ├── DSC_ClusterProperty.psm1 │ │ ├── DSC_ClusterProperty.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_ClusterProperty.strings.psd1 │ ├── DSC_ClusterQuorum │ │ ├── DSC_ClusterQuorum.psm1 │ │ ├── DSC_ClusterQuorum.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_ClusterQuorum.strings.psd1 │ └── DSC_WaitForCluster │ │ ├── DSC_WaitForCluster.psm1 │ │ ├── DSC_WaitForCluster.schema.mof │ │ ├── README.md │ │ └── en-US │ │ └── DSC_WaitForCluster.strings.psd1 ├── Examples │ └── Resources │ │ ├── Cluster │ │ ├── 1-Cluster_CreateFirstNodeOfAFailoverClusterConfig.ps1 │ │ ├── 2-Cluster_JoinAdditionalNodeToFailoverClusterConfig.ps1 │ │ ├── 3-Cluster_CreateFailoverClusterWithTwoNodesConfig.ps1 │ │ ├── 4-Cluster_CreateFailoverClusterAndIgnoreANetworkConfig.ps1 │ │ ├── 5-Cluster_CreateFirstNodeOfAFailoverClusterWithDHCPConfig.ps1 │ │ ├── 6-Cluster_JoinAdditionalNodeToFailoverClusterWithDHCPConfig.ps1 │ │ └── 7-Cluster_JoinAdditionalNodeToFailoverClusterConfigAndDontEvictDownedNodes.ps1 │ │ ├── ClusterDisk │ │ ├── 1-ClusterDisk_AddClusterDiskConfig.ps1 │ │ └── 2-ClusterDisk_RemoveClusterDiskConfig.ps1 │ │ ├── ClusterIPAddress │ │ ├── 1-ClusterIPAddress_AddClusterIPAddress.ps1 │ │ └── 2-ClusterIPAddress_RemoveClusterIPAddress.ps1 │ │ ├── ClusterNetwork │ │ └── 1-ClusterNetwork_ChangeClusterNetworkConfig.ps1 │ │ ├── ClusterPreferredOwner │ │ ├── 1-ClusterPreferredOwner_AddPreferredOwnerConfig.ps1 │ │ └── 2-ClusterPreferredOwner_RemovePreferredOwnerConfig.ps1 │ │ ├── ClusterProperty │ │ └── 1-ClusterProperty_SetClusterPropertiesConfig.ps1 │ │ ├── ClusterQuorum │ │ ├── 1-ClusterQuorum_SetQuorumToNodeMajorityConfig.ps1 │ │ ├── 2-ClusterQuorum_SetQuorumToNodeAndDiskMajorityConfig.ps1 │ │ ├── 3-ClusterQuorum_SetQuorumToNodeAndFileShareMajorityConfig.ps1 │ │ ├── 4-ClusterQuorum_SetQuorumToDiskOnlyConfig.ps1 │ │ └── 5-ClusterQuorum_SetQuorumToNodeAndCloudMajorityConfig.ps1 │ │ └── WaitForCluster │ │ └── 1-WaitForCluster_WaitForFailoverClusterToBePresentConfig.ps1 ├── FailoverClusterDsc.psd1 ├── FailoverClusterDsc.psm1 ├── WikiSource │ └── Home.md └── en-US │ ├── FailoverClusterDsc.strings.psd1 │ └── about_FailOverClusterDsc.help.txt └── tests ├── Integration └── DSC_Cluster.Integration.Tests.ps1 └── Unit ├── DSC_Cluster.Tests.ps1 ├── DSC_ClusterDisk.Tests.ps1 ├── DSC_ClusterIPAddress.Tests.ps1 ├── DSC_ClusterNetwork.Tests.ps1 ├── DSC_ClusterPreferredOwner.Tests.ps1 ├── DSC_ClusterProperty.Tests.ps1 ├── DSC_ClusterQuorum.Tests.ps1 ├── DSC_WaitForCluster.Tests.ps1 └── Stubs ├── FailoverClusters.stubs.psm1 └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /HISTORIC_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/HISTORIC_CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/README.md -------------------------------------------------------------------------------- /RequiredModules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/RequiredModules.psd1 -------------------------------------------------------------------------------- /Resolve-Dependency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/Resolve-Dependency.ps1 -------------------------------------------------------------------------------- /Resolve-Dependency.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/Resolve-Dependency.psd1 -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/codecov.yml -------------------------------------------------------------------------------- /source/DSCResources/DSC_Cluster/DSC_Cluster.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_Cluster/DSC_Cluster.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_Cluster/DSC_Cluster.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_Cluster/DSC_Cluster.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_Cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_Cluster/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_Cluster/en-US/DSC_Cluster.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_Cluster/en-US/DSC_Cluster.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterDisk/DSC_ClusterDisk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterDisk/DSC_ClusterDisk.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterDisk/DSC_ClusterDisk.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterDisk/DSC_ClusterDisk.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterDisk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterDisk/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterDisk/en-US/DSC_ClusterDisk.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterDisk/en-US/DSC_ClusterDisk.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterIPAddress/DSC_ClusterIPAddress.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterIPAddress/DSC_ClusterIPAddress.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterIPAddress/DSC_ClusterIPAddress.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterIPAddress/DSC_ClusterIPAddress.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterIPAddress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterIPAddress/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterIPAddress/en-US/DSC_ClusterIPAddress.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterIPAddress/en-US/DSC_ClusterIPAddress.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterNetwork/DSC_ClusterNetwork.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterNetwork/DSC_ClusterNetwork.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterNetwork/DSC_ClusterNetwork.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterNetwork/DSC_ClusterNetwork.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterNetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterNetwork/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterNetwork/en-US/DSC_ClusterNetwork.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterNetwork/en-US/DSC_ClusterNetwork.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterPreferredOwner/DSC_ClusterPreferredOwner.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterPreferredOwner/DSC_ClusterPreferredOwner.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterPreferredOwner/DSC_ClusterPreferredOwner.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterPreferredOwner/DSC_ClusterPreferredOwner.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterPreferredOwner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterPreferredOwner/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterPreferredOwner/en-US/DSC_ClusterPreferredOwner.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterPreferredOwner/en-US/DSC_ClusterPreferredOwner.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterProperty/DSC_ClusterProperty.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterProperty/DSC_ClusterProperty.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterProperty/DSC_ClusterProperty.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterProperty/DSC_ClusterProperty.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterProperty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterProperty/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterProperty/en-US/DSC_ClusterProperty.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterProperty/en-US/DSC_ClusterProperty.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterQuorum/DSC_ClusterQuorum.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterQuorum/DSC_ClusterQuorum.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterQuorum/DSC_ClusterQuorum.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterQuorum/DSC_ClusterQuorum.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterQuorum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterQuorum/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_ClusterQuorum/en-US/DSC_ClusterQuorum.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_ClusterQuorum/en-US/DSC_ClusterQuorum.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_WaitForCluster/DSC_WaitForCluster.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_WaitForCluster/DSC_WaitForCluster.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_WaitForCluster/DSC_WaitForCluster.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_WaitForCluster/DSC_WaitForCluster.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_WaitForCluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_WaitForCluster/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_WaitForCluster/en-US/DSC_WaitForCluster.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/DSCResources/DSC_WaitForCluster/en-US/DSC_WaitForCluster.strings.psd1 -------------------------------------------------------------------------------- /source/Examples/Resources/Cluster/1-Cluster_CreateFirstNodeOfAFailoverClusterConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/Cluster/1-Cluster_CreateFirstNodeOfAFailoverClusterConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Cluster/2-Cluster_JoinAdditionalNodeToFailoverClusterConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/Cluster/2-Cluster_JoinAdditionalNodeToFailoverClusterConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Cluster/3-Cluster_CreateFailoverClusterWithTwoNodesConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/Cluster/3-Cluster_CreateFailoverClusterWithTwoNodesConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Cluster/4-Cluster_CreateFailoverClusterAndIgnoreANetworkConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/Cluster/4-Cluster_CreateFailoverClusterAndIgnoreANetworkConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Cluster/5-Cluster_CreateFirstNodeOfAFailoverClusterWithDHCPConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/Cluster/5-Cluster_CreateFirstNodeOfAFailoverClusterWithDHCPConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Cluster/6-Cluster_JoinAdditionalNodeToFailoverClusterWithDHCPConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/Cluster/6-Cluster_JoinAdditionalNodeToFailoverClusterWithDHCPConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Cluster/7-Cluster_JoinAdditionalNodeToFailoverClusterConfigAndDontEvictDownedNodes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/Cluster/7-Cluster_JoinAdditionalNodeToFailoverClusterConfigAndDontEvictDownedNodes.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterDisk/1-ClusterDisk_AddClusterDiskConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterDisk/1-ClusterDisk_AddClusterDiskConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterDisk/2-ClusterDisk_RemoveClusterDiskConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterDisk/2-ClusterDisk_RemoveClusterDiskConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterIPAddress/1-ClusterIPAddress_AddClusterIPAddress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterIPAddress/1-ClusterIPAddress_AddClusterIPAddress.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterIPAddress/2-ClusterIPAddress_RemoveClusterIPAddress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterIPAddress/2-ClusterIPAddress_RemoveClusterIPAddress.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterNetwork/1-ClusterNetwork_ChangeClusterNetworkConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterNetwork/1-ClusterNetwork_ChangeClusterNetworkConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterPreferredOwner/1-ClusterPreferredOwner_AddPreferredOwnerConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterPreferredOwner/1-ClusterPreferredOwner_AddPreferredOwnerConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterPreferredOwner/2-ClusterPreferredOwner_RemovePreferredOwnerConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterPreferredOwner/2-ClusterPreferredOwner_RemovePreferredOwnerConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterProperty/1-ClusterProperty_SetClusterPropertiesConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterProperty/1-ClusterProperty_SetClusterPropertiesConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterQuorum/1-ClusterQuorum_SetQuorumToNodeMajorityConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterQuorum/1-ClusterQuorum_SetQuorumToNodeMajorityConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterQuorum/2-ClusterQuorum_SetQuorumToNodeAndDiskMajorityConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterQuorum/2-ClusterQuorum_SetQuorumToNodeAndDiskMajorityConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterQuorum/3-ClusterQuorum_SetQuorumToNodeAndFileShareMajorityConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterQuorum/3-ClusterQuorum_SetQuorumToNodeAndFileShareMajorityConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterQuorum/4-ClusterQuorum_SetQuorumToDiskOnlyConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterQuorum/4-ClusterQuorum_SetQuorumToDiskOnlyConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ClusterQuorum/5-ClusterQuorum_SetQuorumToNodeAndCloudMajorityConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/ClusterQuorum/5-ClusterQuorum_SetQuorumToNodeAndCloudMajorityConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WaitForCluster/1-WaitForCluster_WaitForFailoverClusterToBePresentConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/Examples/Resources/WaitForCluster/1-WaitForCluster_WaitForFailoverClusterToBePresentConfig.ps1 -------------------------------------------------------------------------------- /source/FailoverClusterDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/FailoverClusterDsc.psd1 -------------------------------------------------------------------------------- /source/FailoverClusterDsc.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/FailoverClusterDsc.psm1 -------------------------------------------------------------------------------- /source/WikiSource/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/WikiSource/Home.md -------------------------------------------------------------------------------- /source/en-US/FailoverClusterDsc.strings.psd1: -------------------------------------------------------------------------------- 1 | # Localized resources for FailoverClusterDsc 2 | 3 | ConvertFrom-StringData @' 4 | '@ 5 | -------------------------------------------------------------------------------- /source/en-US/about_FailOverClusterDsc.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/source/en-US/about_FailOverClusterDsc.help.txt -------------------------------------------------------------------------------- /tests/Integration/DSC_Cluster.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Integration/DSC_Cluster.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_Cluster.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/DSC_Cluster.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ClusterDisk.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/DSC_ClusterDisk.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ClusterIPAddress.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/DSC_ClusterIPAddress.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ClusterNetwork.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/DSC_ClusterNetwork.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ClusterPreferredOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/DSC_ClusterPreferredOwner.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ClusterProperty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/DSC_ClusterProperty.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ClusterQuorum.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/DSC_ClusterQuorum.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_WaitForCluster.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/DSC_WaitForCluster.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/Stubs/FailoverClusters.stubs.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/Stubs/FailoverClusters.stubs.psm1 -------------------------------------------------------------------------------- /tests/Unit/Stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/FailoverClusterDsc/HEAD/tests/Unit/Stubs/README.md --------------------------------------------------------------------------------