Skip to content

Commit d1f66d0

Browse files
author
priya shet
committed
Merge branch 'priyshet/networkCloudCLIupdates' of github.com:priyamshet/azure-docs-pr-pshet into priyshet/networkCloudCLIupdates
2 parents fc65e52 + 3b8cb0d commit d1f66d0

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

articles/operator-nexus/howto-baremetal-run-read.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ In the response, an HTTP status code of 202 is returned as the operation is perf
102102
## Checking command status and viewing output
103103

104104

105-
Sample output looks something like below. It prints the top 5K characters of the result to the screen for convenience and provides a short-lived link to the storage blob containing the command execution result. You can use the link to download the zipped output file (tar.gz).
105+
Sample output looks something like below. It prints the top 4K characters of the result to the screen for convenience and provides a short-lived link to the storage blob containing the command execution result. You can use the link to download the zipped output file (tar.gz).
106106

107107
```azurecli
108108
====Action Command Output====

articles/operator-nexus/howto-cluster-metrics-configuration-management.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ Specifying `--no-wait --debug` options in az cli command will result in the exec
6666
| METRIC_TO_ENABLE_1 | Optional metric1 that have been chosen to be enabled in addition to the default metrics |
6767
| METRIC_TO_ENABLE_2 | Optional metric2 that have been chosen to be enabled in addition to the default metrics |
6868

69+
Specifying `--no-wait --debug` options in az cli command will result in the execution of this command asynchronously. See [how to track asynchronous operations](howto-track-async-operations-cli.md) for more details.
70+
6971
## Retrieving a metrics configuration
7072

7173
After a metrics configuration is created, it can be retrieved using a `az rest` command:
@@ -81,9 +83,7 @@ This command will return a JSON representation of the metrics configuration.
8183

8284
## Updating a metrics configuration
8385

84-
Much like the creation of a metrics configuration, an update can be performed to change the configuration.
85-
86-
This command is used to patch properties of the provided metrics configuration of cluster, or update the tags assigned to the metrics configuration.
86+
Much like the creation of a metrics configuration, an update can be performed to change the configuration or update the tags assigned to the metrics configuration.
8787

8888
```azurecli
8989
az networkcloud cluster metricsconfiguration update \
@@ -96,7 +96,7 @@ az networkcloud cluster metricsconfiguration update \
9696

9797
The `collection-interval` can be updated independently of `enabled-metrics` list. Omit fields that aren't being changed.
9898

99-
Specifying `--debug` in az cli will result in the tracking operation status in the returned command output. This operation status can be queried to monitor the progress of the operation. See: [How-to track asynchronous operations](howto-track-async-operations-cli.md).
99+
Specifying `--no-wait --debug` options in az cli command will result in the execution of this command asynchronously. See [how to track asynchronous operations](howto-track-async-operations-cli.md) for more details.
100100

101101
## Deleting a metrics configuration
102102

@@ -108,5 +108,6 @@ az networkcloud cluster metricsconfiguration delete \
108108
--resource-group "<RESOURCE_GROUP>"
109109
```
110110

111-
Specifying `--debug` in az cli will result in the tracking operation status in the returned command output. This operation status can be queried to monitor the progress of the operation. See: [How-to track asynchronous operations](howto-track-async-operations-cli.md).
111+
Specifying `--no-wait --debug` options in az cli command will result in the execution of this command asynchronously. See [how to track asynchronous operations](howto-track-async-operations-cli.md) for more details.
112+
112113

articles/operator-nexus/howto-configure-cluster.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,11 @@ az networkcloud cluster deploy \
152152
--name "$CLUSTER_NAME" \
153153
--resource-group "$CLUSTER_RESOURCE_GROUP" \
154154
--subscription "$SUBSCRIPTION_ID" \
155-
--no-wait
155+
--no-wait --debug
156156
```
157157

158+
This command runs synchronously. If you wish to skip waiting for the command to complete, specify the `--no-wait --debug` options. In that case, follow the instructions on [how to track asynchronous operation](https://learn.microsoft.com/en-us/azure/operator-nexus/howto-track-async-operations-cli).
159+
158160
## Cluster deployment validation
159161

160162
View the status of the cluster:

0 commit comments

Comments
 (0)