Skip to content

Commit d7e2d50

Browse files
committed
mention preview flag for CLI extensions
1 parent 1ee02a1 commit d7e2d50

File tree

1 file changed

+21
-11
lines changed

1 file changed

+21
-11
lines changed

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

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,21 @@ 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

1617
Installations of the following CLI extensions are required:
1718
`networkcloud` (for Microsoft.NetworkCloud APIs) and `managednetworkfabric` (for Microsoft.ManagedNetworkFabric APIs).
1819

1920
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.
2124
2225
## Install `networkcloud` CLI extension
2326

27+
- For list of available versions, see [the networkcloud extension release history][az-cli-networkcloud-cli-versions].
28+
2429
- Upgrade any previously installed version of the extension
2530

2631
```azurecli
@@ -36,6 +41,8 @@ For list of available versions, see [the extension release history][az-cli-netwo
3641
3742
## Install `managednetworkfabric` CLI extension
3843
44+
- For list of available versions, see [the managednetworkfabric extension release history][az-cli-managednetworkfabric-cli-versions].
45+
3946
- Upgrade any previously installed version of the extension
4047
4148
```azurecli
@@ -51,17 +58,19 @@ For list of available versions, see [the extension release history][az-cli-netwo
5158
5259
## Install other Azure extensions
5360
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
71+
```
6372

64-
- List installed CLI extensions and versions
73+
## List installed CLI extensions and versions
6574

6675
List the extension version running:
6776

@@ -89,3 +98,4 @@ ssh 2.0.5
8998
[installation-instruction]: https://aka.ms/azcli
9099

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

0 commit comments

Comments
 (0)