You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/aks-preview/HISTORY.rst
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,10 @@ Pending
16
16
+++++++
17
17
* [Breaking Change] `az aks create/update`: Change `--nat-gateway-outbound-ips` and `--nat-gateway-outbound-ip-prefixes` to use comma-separated values, consistent with load balancer outbound IP parameters.
18
18
19
+
19.0.0b30
20
+
+++++++
21
+
* Add option `AzureContainerLinux` to `--os-sku` for `az aks create`, `az aks nodepool add`, and `az aks nodepool update`.
22
+
19
23
19.0.0b29
20
24
+++++++
21
25
* Add MIG (Multi-Instance GPU) strategy option to node pool property in `az aks nodepool add` and `az aks nodepool update`.
Copy file name to clipboardExpand all lines: src/aks-preview/azext_aks_preview/_help.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -279,7 +279,7 @@
279
279
short-summary: The ID of a PPG.
280
280
- name: --os-sku
281
281
type: string
282
-
short-summary: The os-sku of the agent node pool. Ubuntu, Ubuntu2204, Ubuntu2404, CBLMariner, AzureLinux, AzureLinux3, AzureLinuxOSGuard, AzureLinux3OSGuard, or Flatcar when os-type is Linux, default is Ubuntu if not set; Windows2019, Windows2022, Windows2025, or WindowsAnnual when os-type is Windows, the current default is Windows2022 if not set.
282
+
short-summary: The os-sku of the agent node pool. Ubuntu, Ubuntu2204, Ubuntu2404, CBLMariner, AzureLinux, AzureLinux3, AzureLinuxOSGuard, AzureLinux3OSGuard, AzureContainerLinux, or Flatcar when os-type is Linux, default is Ubuntu if not set; Windows2019, Windows2022, Windows2025, or WindowsAnnual when os-type is Windows, the current default is Windows2022 if not set.
283
283
- name: --enable-fips-image
284
284
type: bool
285
285
short-summary: Use FIPS-enabled OS on agent nodes.
@@ -2112,7 +2112,7 @@
2112
2112
short-summary: The OS Type. Linux or Windows. Windows not supported yet for "VirtualMachines" VM set type.
2113
2113
- name: --os-sku
2114
2114
type: string
2115
-
short-summary: The os-sku of the agent node pool. Ubuntu, Ubuntu2204, Ubuntu2404, CBLMariner, AzureLinux, AzureLinux3, AzureLinuxOSGuard, AzureLinux3OSGuard, or Flatcar when os-type is Linux, default is Ubuntu if not set; Windows2019, Windows2022, Windows2025, or WindowsAnnual when os-type is Windows, the current default is Windows2022 if not set.
2115
+
short-summary: The os-sku of the agent node pool. Ubuntu, Ubuntu2204, Ubuntu2404, CBLMariner, AzureLinux, AzureLinux3, AzureLinuxOSGuard, AzureLinux3OSGuard, AzureContainerLinux, or Flatcar when os-type is Linux, default is Ubuntu if not set; Windows2019, Windows2022, Windows2025, or WindowsAnnual when os-type is Windows, the current default is Windows2022 if not set.
2116
2116
- name: --enable-fips-image
2117
2117
type: bool
2118
2118
short-summary: Use FIPS-enabled OS on agent nodes.
This is an extension to Azure CLI to manage Computelimit resources.
3
+
4
+
## How to use ##
5
+
Install the Computelimit extension using the CLI command below
6
+
7
+
```
8
+
az extension add --name computelimit
9
+
```
10
+
11
+
### Included features ###
12
+
There are 2 groups of compute limit operations that customers can perform on their host subscription
13
+
14
+
**Guest Subscription Operations:** These type of operations are to add/remove/get guest subscriptions that are added to the host subscription to shared compute limits.
15
+
16
+
**Shared Limit Operations:** These type of operations are to enable/disable/get compute limits that are enabled for sharing with the guest subscriptions.
17
+
18
+
#### Add a subscription as a guest to the host subscription. ####
19
+
20
+
```bash
21
+
az computelimit guest-subscription add --location eastus --guest-subscription-id 11111111-1111-1111-1111-111111111111
22
+
```
23
+
24
+
#### Remove a subscription as a guest to the host subscription. ####
25
+
26
+
```bash
27
+
az computelimit guest-subscription remove --location eastus --guest-subscription-id 11111111-1111-1111-1111-111111111111
28
+
```
29
+
30
+
#### Get a guest subscription added to the host subscription. ####
31
+
32
+
```bash
33
+
az computelimit guest-subscription show --location eastus --guest-subscription-id 11111111-1111-1111-1111-111111111111
34
+
```
35
+
36
+
#### List all guest subscriptions added to the host subscription. ####
37
+
38
+
```bash
39
+
az computelimit guest-subscription list --location eastus
40
+
```
41
+
42
+
#### Enable a compute limit to be shared by the host subscription with its guest subscriptions. ####
43
+
44
+
```bash
45
+
az computelimit shared-limit add --location eastus --name StandardDSv3Family
46
+
```
47
+
48
+
#### Disable sharing of a compute limit by the host subscription with its guest subscriptions. ####
49
+
50
+
```bash
51
+
az computelimit shared-limit remove --location eastus --name StandardDSv3Family
52
+
```
53
+
54
+
#### Get a compute limit shared by the host subscription with its guest subscriptions. ####
55
+
56
+
```bash
57
+
az computelimit shared-limit show --location eastus --name StandardDSv3Family
58
+
```
59
+
60
+
#### List all compute limits shared by the host subscription with its guest subscriptions. ####
61
+
62
+
```bash
63
+
az computelimit shared-limit list --location eastus
0 commit comments