You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 31, 2019. It is now read-only.
Copy file name to clipboardExpand all lines: labs/aks-100-setup-env.md
+31-1Lines changed: 31 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,37 @@ $ az account set -s 'Visual Studio Premium with MSDN'
40
40
41
41
## Register Azure Resource Providers
42
42
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:
0 commit comments