Skip to content

Files

Latest commit

 

History

History
 
 

2024-05-21-aks-automatic-azure-cli

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

AKS Automatic with Azure CLI

This is a guide to create an AKS Automatic cluster with Azure CLI.

Before you begin, you need to have the Azure CLI installed. If you don't have it installed, you can follow the instructions here.

Ensure you are logged in to your Azure account by running the following command:

az login

Ensure you have the following extensions installed:

az extension add --name aks-preview

Ensure you have the following preview features enabled in your subscription:

az feature register --namespace Microsoft.ContainerService --name EnableAPIServerVnetIntegrationPreview
az feature register --namespace Microsoft.ContainerService --name NRGLockdownPreview
az feature register --namespace Microsoft.ContainerService --name SafeguardsPreview
az feature register --namespace Microsoft.ContainerService --name NodeAutoProvisioningPreview
az feature register --namespace Microsoft.ContainerService --name DisableSSHPreview
az feature register --namespace Microsoft.ContainerService --name AutomaticSKUPreview
az provider register --namespace Microsoft.ContainerService

Once you have the extensions and features enabled, you can create an AKS Automatic cluster by running the commands in the sample script.