Deployment Ring

Ring

Used to help orchestrate and restrict packages to specific eligible endpoints. Sometimes you want to not move 30k machines instantly to a new package version, but you need to be able to organize and automate a subset of those.

@{
    'vmware-horizon-client Broad' = @{
        Name           = 'vmware-horizon-client'
        Ensure         = 'Present'
        MinimumVersion = '5.5.1.17575367'
        Ring           = 'Broad'
    }
    'vmware-horizon-client Fast'  = @{
        Name           = 'vmware-horizon-client'
        Ensure         = 'Present'
        MinimumVersion = '8.2.0.17759012'
        Ring           = 'Fast'
    }
    'vmware-horizon-client Pilot' = @{
        Name        = 'vmware-horizon-client'
        Ensure      = 'Present'
        AutoUpgrade = $true
        Ring        = 'Pilot'
    }
}

Last updated

Was this helpful?