|
2469 | 2469 | short-summary: Rollback an agent pool to a previously used configuration. |
2470 | 2470 | long-summary: | |
2471 | 2471 | Rollback an agent pool to a previously used Kubernetes version or node image version. |
2472 | | - If no specific versions are provided, the nodepool will be rolled back to the most recently used configuration. |
| 2472 | + At least one of --kubernetes-version or --node-image-version must be specified. |
2473 | 2473 | parameters: |
2474 | | - - name: --kubernetes-version |
| 2474 | + - name: --kubernetes-version -k |
2475 | 2475 | type: string |
2476 | 2476 | short-summary: Target Kubernetes version for rollback. |
2477 | | - long-summary: If not specified, uses the most recent available Kubernetes version. |
2478 | 2477 | - name: --node-image-version |
2479 | 2478 | type: string |
2480 | 2479 | short-summary: Target node image version for rollback. |
2481 | | - long-summary: If not specified, uses the most recent available node image version. |
2482 | 2480 | - name: --aks-custom-headers |
2483 | 2481 | type: string |
2484 | 2482 | short-summary: Send custom headers. When specified, format should be Key1=Value1,Key2=Value2. |
|
2489 | 2487 | type: string |
2490 | 2488 | short-summary: Set to '*' to allow a new resource to be created, but to prevent updating an existing resource. |
2491 | 2489 | examples: |
2492 | | - - name: Rollback a nodepool to the most recent configuration. |
2493 | | - text: az aks nodepool rollback --resource-group MyResourceGroup --cluster-name MyManagedCluster --nodepool-name MyNodePool |
2494 | | - crafted: true |
2495 | 2490 | - name: Rollback a nodepool to a specific Kubernetes version. |
2496 | 2491 | text: az aks nodepool rollback --resource-group MyResourceGroup --cluster-name MyManagedCluster --nodepool-name MyNodePool --kubernetes-version 1.28.5 |
2497 | 2492 | crafted: true |
2498 | 2493 | - name: Rollback a nodepool to specific Kubernetes and node image versions. |
2499 | 2494 | text: az aks nodepool rollback --resource-group MyResourceGroup --cluster-name MyManagedCluster --nodepool-name MyNodePool --kubernetes-version 1.28.5 --node-image-version AKSUbuntu-1804gen2containerd-2024.01.15 |
2500 | 2495 | crafted: true |
| 2496 | + - name: Rollback a nodepool to a specific node image version. |
| 2497 | + text: az aks nodepool rollback --resource-group MyResourceGroup --cluster-name MyManagedCluster --nodepool-name MyNodePool --node-image-version AKSUbuntu-1804gen2containerd-2024.01.15 |
| 2498 | + crafted: true |
2501 | 2499 | """ |
2502 | 2500 |
|
2503 | 2501 | helps['aks nodepool stop'] = """ |
|
0 commit comments