Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix azure cli VMSSPreview feature register command #1298

Merged
merged 2 commits into from
May 29, 2019

Commits on May 29, 2019

  1. Fix azure cli VMSSPreview feature register command

    The command was incorrect and produced an error:
    `
    az feature --name VMSSPreview --namespace Microsoft.ContainerService
    az feature: 'VMSSPreview' is not in the 'az feature' command group. See 'az feature --help'.
    `
    The correct command should be 
    
    `
    az feature register --name VMSSPreview --namespace Microsoft.ContainerService
    `
    see MS docs: https://docs.microsoft.com/en-us/azure/aks/cluster-autoscaler
    dazzag24 authored May 29, 2019
    Configuration menu
    Copy the full SHA
    7aaa255 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from dazzag24/dazzag24-patch-1

    Fix azure cli VMSSPreview feature register command
    dazzag24 authored May 29, 2019
    Configuration menu
    Copy the full SHA
    e44a429 View commit details
    Browse the repository at this point in the history