Skip to content

Commit 5c53e3d

Browse files
authored
Merge pull request #296507 from mbashtovaya/main
Nexus: mention preview flag for CLI extensions
2 parents ba3aa95 + 9d2b267 commit 5c53e3d

File tree

1 file changed

+27
-13
lines changed

1 file changed

+27
-13
lines changed

articles/operator-nexus/howto-install-cli-extensions.md

Lines changed: 27 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,25 @@ ms.date: 09/05/2024
1111
---
1212

1313
# Prepare to install Azure CLI extensions
14+
1415
This how-to guide explains the steps for installing the required az CLI and extensions required to interact with Operator Nexus.
1516

17+
Azure CLI is required to be installed before the extensions installations. Follow [Install Azure CLI][installation-instruction] instructions to install it.
18+
1619
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+
1823

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.
2128
2229
## Install `networkcloud` CLI extension
2330

31+
- For list of available versions, see [the extension release history][az-cli-networkcloud-cli-versions].
32+
2433
- Upgrade any previously installed version of the extension
2534

2635
```azurecli
@@ -36,6 +45,8 @@ For list of available versions, see [the extension release history][az-cli-netwo
3645
3746
## Install `managednetworkfabric` CLI extension
3847
48+
- For list of available versions, see [the extension release history][az-cli-managednetworkfabric-cli-versions].
49+
3950
- Upgrade any previously installed version of the extension
4051
4152
```azurecli
@@ -51,17 +62,19 @@ For list of available versions, see [the extension release history][az-cli-netwo
5162
5263
## Install other Azure extensions
5364
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
75+
```
6376

64-
- List installed CLI extensions and versions
77+
## List installed CLI extensions and versions
6578

6679
List the extension version running:
6780

@@ -89,3 +102,4 @@ ssh 2.0.5
89102
[installation-instruction]: https://aka.ms/azcli
90103

91104
[az-cli-networkcloud-cli-versions]: https://github.com/Azure/azure-cli-extensions/blob/main/src/networkcloud/HISTORY.rst
105+
[az-cli-managednetworkfabric-cli-versions]: https://github.com/Azure/azure-cli-extensions/blob/main/src/managednetworkfabric/HISTORY.rst

0 commit comments

Comments
 (0)