From 12700633b187138cae593cd1beafa4caecb24016 Mon Sep 17 00:00:00 2001 From: Don Bowman Date: Wed, 5 Sep 2018 18:09:18 -0400 Subject: [PATCH] Move 'az provider register' to 'Configure your Azure account' section. (#339) Regardless of whether you use the quick-start or the manual setup, you need to run: `az provider register --namespace 'Microsoft.ContainerInstance'` on your account. Move up from the 'Manual' section. --- providers/azure/README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/providers/azure/README.md b/providers/azure/README.md index 0055df713..68da4c49f 100644 --- a/providers/azure/README.md +++ b/providers/azure/README.md @@ -111,6 +111,12 @@ First let's identify your Azure subscription and save it for use later on in the $env:AZURE_SUBSCRIPTION_ID = "" ``` +4. Enable ACI in your subscription: + + ```cli + az provider register -n Microsoft.ContainerInstance + ``` + ## Quick set-up with the ACI Connector The Azure cli can be used to install the ACI provider. We like to say Azure's provider or implementation for Virtual Kubelet is the ACI Connector. @@ -182,14 +188,6 @@ resources on your account on behalf of Kubernetes. $env:AZURE_CLIENT_SECRET = "" ``` -### Setting up your Azure account to use ACI - -You will need to enable ACI in your subscription: - -```cli -az provider register -n Microsoft.ContainerInstance -``` - ## Deployment of the ACI provider in your cluster Run these commands to deploy the virtual kubelet which connects your Kubernetes cluster to Azure Container Instances.