Skip to content
This repository was archived by the owner on Aug 31, 2019. It is now read-only.

Commit 01fcb09

Browse files
author
Yoichi Kawasaki
committed
Add more instructions
1 parent ddf604b commit 01fcb09

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

labs/aks-100-setup-env.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,37 @@ $ az account set -s 'Visual Studio Premium with MSDN'
4040

4141
## Register Azure Resource Providers
4242

43-
Execute the following commands which are needed in case that it's the first time to manage Azrue resources such as Network, Storage, Compute and ContainerSerivces with your subscription:
43+
Check the following Azure resources are already registered:
44+
```sh
45+
# Microsoft.Network
46+
$ az provider list --query "[?contains(namespace,'Microsoft.Network')]" -o table
47+
48+
Namespace RegistrationState
49+
----------------- -------------------
50+
Microsoft.Network Registered
51+
52+
# Microsoft.Storage
53+
$ az provider list --query "[?contains(namespace,'Microsoft.Storage')]" -o table
54+
55+
Namespace RegistrationState
56+
----------------- -------------------
57+
Microsoft.Storage Registered
58+
59+
# Microsoft.Compute
60+
$ az provider list --query "[?contains(namespace,'Microsoft.Compute')]" -o table
61+
62+
Namespace RegistrationState
63+
----------------- -------------------
64+
Microsoft.Compute Registered
65+
66+
# Microsoft.ContainerService
67+
$ az provider list --query "[?contains(namespace,'Microsoft.ContainerService')]" -o table
68+
Namespace RegistrationState
69+
-------------------------- -------------------
70+
Microsoft.ContainerService Registered
71+
```
72+
73+
If you find NOT registered resources with your subscription, execute the following commands to register:
4474

4575
```sh
4676
$ az provider register -n Microsoft.Network

0 commit comments

Comments
 (0)