Skip to content

Commit 32bf45d

Browse files
Merge pull request #15608 from sethmanheim/clifixes
Fix CLI commands
2 parents 46dd8ed + 28d7a3e commit 32bf45d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

AKS-Hybrid/auto-scale-aks-arc.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ms.topic: how-to
55
ms.custom: devx-track-azurecli
66
author: sethmanheim
77
ms.author: sethm
8-
ms.lastreviewed: 02/28/2024
8+
ms.date: 08/01/2024
99
ms.reviewer: abha
10-
ms.date: 02/28/2024
10+
ms.lastreviewed: 08/01/2024
1111

1212
# Intent: As a Kubernetes user, I want to use cluster autoscaling to grow my nodes to keep up with application demand.
1313
# Keyword: cluster autoscaling Kubernetes
@@ -59,7 +59,7 @@ It takes a few minutes to update the cluster and configure the cluster autoscale
5959
Disable the cluster autoscaler using the [`az aksarc update`](/cli/azure/aksarc#az-aksarc-update) command and the `--disable-cluster-autoscaler` parameter:
6060

6161
```azurecli-interactive
62-
az aks update \
62+
az aksarc update \
6363
--resource-group myResourceGroup \
6464
--name my-aks-arc-cluster \
6565
--disable-cluster-autoscaler
@@ -72,7 +72,7 @@ Nodes aren't removed when the cluster autoscaler is disabled.
7272
As your application demands change, you might need to adjust the cluster autoscaler node count to scale efficiently. Change the node count using the [`az aksarc update`](/cli/azure/aksarc#az-aksarc-update) command and update the cluster autoscaler using the `--update-cluster-autoscaler` parameter and specifying your updated `--min-count` and `--max-count` for the node.
7373

7474
```azurecli-interactive
75-
az aks update \
75+
az aksarc update \
7676
--resource-group myResourceGroup \
7777
--name myAKSCluster \
7878
--update-cluster-autoscaler \

AKS-Hybrid/cluster-labels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
title: Use cluster labels in AKS enabled by Azure Arc
33
description: Learn how to use labels in Kubernetes clusters in AKS enabled by Arc.
44
ms.topic: how-to
5-
ms.date: 05/31/2024
5+
ms.date: 08/01/2024
66
author: sethmanheim
77
ms.author: sethm
8-
ms.lastreviewed: 05/31/2024
8+
ms.lastreviewed: 08/01/2024
99
ms.reviewer: guanghu
1010

1111
---

0 commit comments

Comments
 (0)