|
775 | 775 | parameters: |
776 | 776 | - name: --enable-cluster-autoscaler -e |
777 | 777 | type: bool |
778 | | - short-summary: Enable cluster autoscaler. |
| 778 | + short-summary: Enable cluster autoscaler. For VirtualMachines pools, converts all manual scale profiles to autoscale profiles using the same min/max counts. |
779 | 779 | - name: --disable-cluster-autoscaler -d |
780 | 780 | type: bool |
781 | | - short-summary: Disable cluster autoscaler. |
| 781 | + short-summary: Disable cluster autoscaler. For VirtualMachines pools, converts all autoscale profiles back to manual scale profiles. |
782 | 782 | - name: --update-cluster-autoscaler -u |
783 | 783 | type: bool |
784 | | - short-summary: Update min-count or max-count for cluster autoscaler. |
| 784 | + short-summary: Update min-count or max-count for cluster autoscaler. Not supported for VirtualMachines pools; use 'az aks nodepool auto-scale update' instead. |
785 | 785 | - name: --min-count |
786 | 786 | type: int |
787 | 787 | short-summary: Minimum nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. Please specify the value in the range of [1, 1000] |
|
2182 | 2182 | parameters: |
2183 | 2183 | - name: --enable-cluster-autoscaler -e |
2184 | 2184 | type: bool |
2185 | | - short-summary: Enable cluster autoscaler. |
| 2185 | + short-summary: Enable cluster autoscaler. For VirtualMachines pools, converts all manual scale profiles to autoscale profiles using the same min/max counts. |
2186 | 2186 | - name: --disable-cluster-autoscaler -d |
2187 | 2187 | type: bool |
2188 | | - short-summary: Disable cluster autoscaler. |
| 2188 | + short-summary: Disable cluster autoscaler. For VirtualMachines pools, converts all autoscale profiles back to manual scale profiles. |
2189 | 2189 | - name: --update-cluster-autoscaler -u |
2190 | 2190 | type: bool |
2191 | | - short-summary: Update min-count or max-count for cluster autoscaler. |
| 2191 | + short-summary: Update min-count or max-count for cluster autoscaler. Not supported for VirtualMachines pools; use 'az aks nodepool auto-scale update' instead. |
2192 | 2192 | - name: --min-count |
2193 | 2193 | type: int |
2194 | 2194 | short-summary: Minimum nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. Please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool. |
|
2422 | 2422 |
|
2423 | 2423 | helps["aks nodepool manual-scale"] = """ |
2424 | 2424 | type: group |
2425 | | - short-summary: Commands to manage nodepool virtualMachineProfile.scale.manual. |
| 2425 | + short-summary: Commands to manage nodepool virtualMachinesProfile.scale.manual. |
2426 | 2426 | """ |
2427 | 2427 |
|
2428 | 2428 | helps["aks nodepool manual-scale add"] = """ |
|
2461 | 2461 | short-summary: Comma-separated list of sizes in the manual to be deleted. |
2462 | 2462 | """ |
2463 | 2463 |
|
| 2464 | +helps["aks nodepool auto-scale"] = """ |
| 2465 | + type: group |
| 2466 | + short-summary: Commands to manage nodepool virtualMachinesProfile.scale.autoscale. |
| 2467 | +""" |
| 2468 | + |
| 2469 | +helps["aks nodepool auto-scale add"] = """ |
| 2470 | + type: command |
| 2471 | + short-summary: Add a new autoscale profile to a VirtualMachines agentpool in the managed Kubernetes cluster. |
| 2472 | + parameters: |
| 2473 | + - name: --node-vm-size |
| 2474 | + type: string |
| 2475 | + short-summary: VM size for the autoscale profile. |
| 2476 | + - name: --min-count |
| 2477 | + type: int |
| 2478 | + short-summary: Minimum number of nodes for autoscaling. |
| 2479 | + - name: --max-count |
| 2480 | + type: int |
| 2481 | + short-summary: Maximum number of nodes for autoscaling. |
| 2482 | + examples: |
| 2483 | + - name: Add an autoscale profile to a VirtualMachines agentpool |
| 2484 | + text: az aks nodepool auto-scale add -g MyResourceGroup --cluster-name MyMC --name MyNodePool --node-vm-size Standard_D2s_v3 --min-count 3 --max-count 5 |
| 2485 | +""" |
| 2486 | + |
| 2487 | +helps["aks nodepool auto-scale update"] = """ |
| 2488 | + type: command |
| 2489 | + short-summary: Update an existing autoscale profile of a VirtualMachines agentpool in the managed Kubernetes cluster. |
| 2490 | + parameters: |
| 2491 | + - name: --current-node-vm-size |
| 2492 | + type: string |
| 2493 | + short-summary: The current VM size of the autoscale profile to be updated. |
| 2494 | + - name: --node-vm-size |
| 2495 | + type: string |
| 2496 | + short-summary: The new VM size for the autoscale profile. |
| 2497 | + - name: --min-count |
| 2498 | + type: int |
| 2499 | + short-summary: Minimum number of nodes for autoscaling. |
| 2500 | + - name: --max-count |
| 2501 | + type: int |
| 2502 | + short-summary: Maximum number of nodes for autoscaling. |
| 2503 | + examples: |
| 2504 | + - name: Update an existing autoscale profile in a VirtualMachines agentpool |
| 2505 | + text: az aks nodepool auto-scale update -g MyResourceGroup --cluster-name MyMC --name MyNodePool --current-node-vm-size Standard_D2s_v3 --node-vm-size Standard_D8s_v3 --min-count 2 --max-count 4 |
| 2506 | +""" |
| 2507 | + |
| 2508 | +helps["aks nodepool auto-scale delete"] = """ |
| 2509 | + type: command |
| 2510 | + short-summary: Delete an existing autoscale profile from a VirtualMachines agentpool in the managed Kubernetes cluster. |
| 2511 | + parameters: |
| 2512 | + - name: --current-node-vm-size |
| 2513 | + type: string |
| 2514 | + short-summary: The VM size of the autoscale profile to be deleted. |
| 2515 | + examples: |
| 2516 | + - name: Delete an autoscale profile from a VirtualMachines agentpool |
| 2517 | + text: az aks nodepool auto-scale delete -g MyResourceGroup --cluster-name MyMC --name MyNodePool --current-node-vm-size Standard_D2s_v3 |
| 2518 | +""" |
| 2519 | + |
2464 | 2520 | helps["aks show"] = """ |
2465 | 2521 | type: command |
2466 | 2522 | short-summary: Show the details for a managed Kubernetes cluster. |
|
0 commit comments