Translate

Total Pageviews

My YouTube Channel

Thursday 31 January 2013

Test and Repair Rule Compliance


This task assumes that your infrastructure includes one or more ESXi hosts provisioned with Auto Deploy, and that the host on which you installed VMware PowerCLI can access those ESXi hosts.
Install VMware PowerCLI and all prerequisite software.
If you encounter problems running PowerCLI cmdlets, consider changing the execution policy. See Using Auto Deploy Cmdlets.
1
Use PowerCLI to check which Auto Deploy rules are currently available.
Get-DeployRule
The system returns the rules and the associated items and patterns.
2
Make a change to one of the available rules, for example, you might change the image profile and the name of the rule.
Copy-DeployRule -DeployRule testrule -ReplaceItem MyNewProfile
You cannot edit a rule already added to a rule set. Instead, you copy the rule and replace the item or pattern you want to change.
3
Verify that the host that you want to test rule set compliance for is accessible.
Get-VMHost -Name MyEsxi42
4
Run the cmdlet that tests rule set compliance for the host, and bind the return value to a variable for later use.
$tr = Test-DeployRuleSetCompliance MyEsxi42
5
Examine the differences between what is in the rule set and what the host is currently using.
$tr.itemlist
The system returns a table of current and expected items.

CurrentItem                             ExpectedItem
-----------                             ------------   
My Profile 25                           MyProfileUpdate
6
Remediate the host to use the revised rule set the next time you boot the host.
Repair-DeployRuleSetCompliance $tr
If the rule you changed specified the inventory location, the change takes effect when you repair complianceFor all other changes, boot your host to have Auto Deploy apply the new rule and to achieve compliance between the rule set and the host.

No comments:

Post a Comment