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
+27-13Lines changed: 27 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,16 +11,25 @@ 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
17
+
Azure CLI is required to be installed before the extensions installations. Follow [Install Azure CLI][installation-instruction] instructions to install it.
18
+
16
19
Installations of the following CLI extensions are required:
17
-
`networkcloud` (for Microsoft.NetworkCloud APIs) and `managednetworkfabric` (for Microsoft.ManagedNetworkFabric APIs).
20
+
-`networkcloud` for Microsoft.NetworkCloud APIs
21
+
-`managednetworkfabric` for Microsoft.ManagedNetworkFabric APIs
22
+
18
23
19
-
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].
24
+
25
+
>[!NOTE]
26
+
> Any upgrade of the Azure CLI downloads the latest stable version of the installed extension.
27
+
>The `--allow-preview=True` needs to be explicitly set to install the preview version of the extensions.
21
28
22
29
## Install `networkcloud` CLI extension
23
30
31
+
- For list of available versions, see [the extension release history][az-cli-networkcloud-cli-versions].
32
+
24
33
- Upgrade any previously installed version of the extension
25
34
26
35
```azurecli
@@ -36,6 +45,8 @@ For list of available versions, see [the extension release history][az-cli-netwo
36
45
37
46
## Install `managednetworkfabric` CLI extension
38
47
48
+
- For list of available versions, see [the extension release history][az-cli-managednetworkfabric-cli-versions].
49
+
39
50
- Upgrade any previously installed version of the extension
40
51
41
52
```azurecli
@@ -51,17 +62,19 @@ For list of available versions, see [the extension release history][az-cli-netwo
51
62
52
63
## Install other Azure extensions
53
64
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
-
```
65
+
Install the other Azure CLI extensions that Nexus makes use of.
66
+
67
+
```azurecli
68
+
az extension add --yes --upgrade --name customlocation
69
+
az extension add --yes --upgrade --name k8s-extension
70
+
az extension add --yes --upgrade --name k8s-configuration
71
+
az extension add --yes --upgrade --name connectedmachine
72
+
az extension add --yes --upgrade --name monitor-control-service
73
+
az extension add --yes --upgrade --name ssh
74
+
az extension add --yes --upgrade --name connectedk8s
0 commit comments