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
Copy file name to clipboardExpand all lines: articles/operator-nexus/howto-install-cli-extensions.md
+21-11Lines changed: 21 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,16 +11,21 @@ ms.date: 09/05/2024
11
11
---
12
12
13
13
# Prepare to install Azure CLI extensions
14
+
14
15
This how-to guide explains the steps for installing the required az CLI and extensions required to interact with Operator Nexus.
15
16
16
17
Installations of the following CLI extensions are required:
17
18
`networkcloud` (for Microsoft.NetworkCloud APIs) and `managednetworkfabric` (for Microsoft.ManagedNetworkFabric APIs).
18
19
19
20
If you haven't already installed Azure CLI: [Install Azure CLI][installation-instruction]. The aka.ms links download the latest available version of the extension.
20
-
For list of available versions, see [the extension release history][az-cli-networkcloud-cli-versions].
21
+
22
+
>[!NOTE]
23
+
>The `--allow-preview=True` needs to be explicitely set to install the preview version of an extension.
21
24
22
25
## Install `networkcloud` CLI extension
23
26
27
+
- For list of available versions, see [the networkcloud extension release history][az-cli-networkcloud-cli-versions].
28
+
24
29
- Upgrade any previously installed version of the extension
25
30
26
31
```azurecli
@@ -36,6 +41,8 @@ For list of available versions, see [the extension release history][az-cli-netwo
36
41
37
42
## Install `managednetworkfabric` CLI extension
38
43
44
+
- For list of available versions, see [the managednetworkfabric extension release history][az-cli-managednetworkfabric-cli-versions].
45
+
39
46
- Upgrade any previously installed version of the extension
40
47
41
48
```azurecli
@@ -51,17 +58,19 @@ For list of available versions, see [the extension release history][az-cli-netwo
51
58
52
59
## Install other Azure extensions
53
60
54
-
```azurecli
55
-
az extension add --yes --upgrade --name customlocation
56
-
az extension add --yes --upgrade --name k8s-extension
57
-
az extension add --yes --upgrade --name k8s-configuration
58
-
az extension add --yes --upgrade --name connectedmachine
59
-
az extension add --yes --upgrade --name monitor-control-service
60
-
az extension add --yes --upgrade --name ssh
61
-
az extension add --yes --upgrade --name connectedk8s
62
-
```
61
+
Install the additional Azure CLI extensions that Nexus makes use of.
62
+
63
+
```azurecli
64
+
az extension add --yes --upgrade --name customlocation
65
+
az extension add --yes --upgrade --name k8s-extension
66
+
az extension add --yes --upgrade --name k8s-configuration
67
+
az extension add --yes --upgrade --name connectedmachine
68
+
az extension add --yes --upgrade --name monitor-control-service
69
+
az extension add --yes --upgrade --name ssh
70
+
az extension add --yes --upgrade --name connectedk8s
0 commit comments