|
| 1 | +--- |
| 2 | +title: "Azure Operator Nexus: How to check runtime version for Azure Operator Nexus" |
| 3 | +description: Learn to check the runtime version of the key components in Azure Operator Nexus. |
| 4 | +author: tonyyam23 |
| 5 | +ms.author: tonyyam |
| 6 | +ms.service: azure-operator-nexus |
| 7 | +ms.custom: azure-operator-nexus, devx-track-azurecli |
| 8 | +ms.topic: how-to |
| 9 | +ms.date: 12/03/2024 |
| 10 | +#ms.custom: template-include |
| 11 | +--- |
| 12 | + |
| 13 | +# How to check current runtime version for Azure Operator Nexus |
| 14 | +This how-to guide explains the steps to determine the runtime version of the key components in Azure Operator Nexus. |
| 15 | + |
| 16 | +## Prerequisites |
| 17 | + |
| 18 | +* The [Install Azure CLI](/cli/azure/install-azure-cli) must be installed. |
| 19 | +* The `networkcloud` CLI extension is required. If the `networkcloud` extension isn't installed, it can be installed following the steps listed [here](./howto-install-cli-extensions.md) |
| 20 | +* Access to the Azure portal for the target cluster to be upgraded. |
| 21 | +* You must be logged in to the same subscription as your target cluster via `az login` |
| 22 | + |
| 23 | +## Check current Cluster runtime version |
| 24 | + |
| 25 | +### Via Azure portal |
| 26 | + |
| 27 | +To check current cluster runtime version, navigate to the cluster in the Azure portal. In the cluster's overview pane, navigate to the ***Properties*** tab and look for "Cluster version" |
| 28 | + |
| 29 | +:::image type="content" source="media\cluster-runtime-version-screenshot.png" alt-text="Screenshot of cluster runtime version." lightbox="media\cluster-runtime-version-screenshot.png"::: |
| 30 | + |
| 31 | +### Via Azure CLI |
| 32 | + |
| 33 | +Current Runtime cluster version is retrievable via the Azure CLI: |
| 34 | + |
| 35 | +```azurecli |
| 36 | +az networkcloud cluster show --name "clusterName" --resource-group "cls_resourceGroup" --query "{name:name, version:clusterVersion}" -o json |
| 37 | +{ |
| 38 | + "name": "sample_clsName", |
| 39 | + "version": "3.14.1" |
| 40 | +} |
| 41 | +``` |
| 42 | + |
| 43 | +## Check current Fabric runtime version |
| 44 | + |
| 45 | +### Via Azure portal |
| 46 | +To check current fabric runtime version, navigate to the fabric in the Azure portal. In the fabric's overview pane, navigate to the ***Properties*** tab and look for "Fabric version" |
| 47 | + |
| 48 | +:::image type="content" source="media\fabric-runtime-version-screenshot.png" alt-text="Screenshot of fabric runtime version." lightbox="media\fabric-runtime-version-screenshot.png"::: |
| 49 | + |
| 50 | +### Via Azure CLI |
| 51 | +Current Runtime fabric version is retrievable via the Azure CLI: |
| 52 | +```azurecli |
| 53 | +az networkfabric fabric show --resource-name "fabricName" --resource-group "fab_resourceGroup" --query "{name:name, version:fabricVersion}" -o json |
| 54 | +{ |
| 55 | + "name": "Sample_fabName", |
| 56 | + "version": "3.0.0" |
| 57 | +} |
| 58 | +``` |
| 59 | + |
0 commit comments