Skip to content

Commit 8bee44a

Browse files
authored
Merge pull request #253442 from JAC0BSMITH/jac0bsmith_Nexus_Docs
Update CLI docs
2 parents 69bd5cd + 06633d0 commit 8bee44a

File tree

1 file changed

+12
-20
lines changed

1 file changed

+12
-20
lines changed

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

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,48 +6,40 @@ ms.author: travisneely
66
ms.service: azure-operator-nexus
77
ms.custom: devx-track-azurecli
88
ms.topic: include
9-
ms.date: 08/21/2023
9+
ms.date: 10/02/2023
1010
# ms.custom: template-include
1111
---
1212

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

1616
Installations of the following CLI extensions are required:
17-
`networkcloud` (for Microsoft.NetworkCloud APIs), `managednetworkfabric` (for Microsoft.ManagedNetworkFabric APIs) and `hybridaks` (for AKS-Hybrid APIs).
17+
`networkcloud` (for Microsoft.NetworkCloud APIs) and `managednetworkfabric` (for Microsoft.ManagedNetworkFabric APIs).
1818

1919
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].
2021

2122
## Install `networkcloud` CLI extension
2223

23-
- Remove any previously installed version of the extension
24+
- Upgrade any previously installed version of the extension
2425

2526
```azurecli
26-
az extension remove --name networkcloud
27+
az extension add --yes --upgrade --name networkcloud
2728
```
2829
29-
3030
- Install and test the latest version of `networkcloud` CLI extension
3131
3232
```azurecli
3333
az extension add --name networkcloud
3434
az networkcloud --help
3535
```
3636
37-
For list of available versions, see [the extension release history][az-cli-networkcloud-cli-versions].
38-
39-
To install a specific version of the networkcloud CLI extension, add `--version` parameter to the command. For example, below installs 0.4.1
40-
41-
```azurecli
42-
az extension add --name networkcloud --version 0.4.1
43-
```
44-
4537
## Install `managednetworkfabric` CLI extension
4638
47-
- Remove any previously installed version of the extension
39+
- Upgrade any previously installed version of the extension
4840
4941
```azurecli
50-
az extension remove --name managednetworkfabric
42+
az extension add --yes --upgrade --name managednetworkfabric
5143
```
5244
5345
- Install and test the `managednetworkfabric` CLI extension
@@ -64,7 +56,7 @@ az extension add --name networkcloud --version 0.4.1
6456
az extension add --yes --upgrade --name k8s-extension
6557
az extension add --yes --upgrade --name k8s-configuration
6658
az extension add --yes --upgrade --name connectedmachine
67-
az extension add --yes --upgrade --name monitor-control-service --version 0.2.0
59+
az extension add --yes --upgrade --name monitor-control-service
6860
az extension add --yes --upgrade --name ssh
6961
az extension add --yes --upgrade --name connectedk8s
7062
```
@@ -84,13 +76,13 @@ Name Version
8476
----------------------- -------------
8577
monitor-control-service 0.2.0
8678
connectedmachine 0.6.0
87-
connectedk8s 1.4.0
88-
k8s-extension 1.4.2
89-
networkcloud 1.0.0
79+
connectedk8s 1.4.2
80+
k8s-extension 1.4.3
81+
networkcloud 1.1.0
9082
k8s-configuration 1.7.0
9183
managednetworkfabric 3.2.0
9284
customlocation 0.1.3
93-
ssh 2.0.1
85+
ssh 2.0.2
9486
```
9587

9688
<!-- LINKS - External -->

0 commit comments

Comments
 (0)