@@ -16,18 +16,18 @@ Create a new node pool in specified cluster.
16
16
```
17
17
New-AzAksNodePool -ResourceGroupName <String> -ClusterName <String> -Name <String> [-Count <Int32>]
18
18
[-OsDiskSize <Int32>] [-VmSize <String>] [-VnetSubnetID <String>] [-MaxPodCount <Int32>] [-OsType <String>]
19
- [-ScaleSetPriority <String>] [-ScaleSetEvictionPolicy <String>] [-VmSetType <String>] [-Force]
20
- [-KubernetesVersion <String>] [-MinCount <Int32 >] [-MaxCount <Int32>] [-EnableAutoScaling ]
21
- [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
19
+ [-ScaleSetPriority <String>] [-ScaleSetEvictionPolicy <String>] [-VmSetType <String>]
20
+ [-AvailabilityZone <String[] >] [-Force] [-KubernetesVersion <String >] [-MinCount <Int32>] [-MaxCount <Int32> ]
21
+ [-EnableAutoScaling] [- DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
22
22
```
23
23
24
24
### ParentObjectParameterSet
25
25
```
26
26
New-AzAksNodePool -Name <String> -ClusterObject <PSKubernetesCluster> [-Count <Int32>] [-OsDiskSize <Int32>]
27
27
[-VmSize <String>] [-VnetSubnetID <String>] [-MaxPodCount <Int32>] [-OsType <String>]
28
- [-ScaleSetPriority <String>] [-ScaleSetEvictionPolicy <String>] [-VmSetType <String>] [-Force]
29
- [-KubernetesVersion <String>] [-MinCount <Int32 >] [-MaxCount <Int32>] [-EnableAutoScaling ]
30
- [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
28
+ [-ScaleSetPriority <String>] [-ScaleSetEvictionPolicy <String>] [-VmSetType <String>]
29
+ [-AvailabilityZone <String[] >] [-Force] [-KubernetesVersion <String >] [-MinCount <Int32>] [-MaxCount <Int32> ]
30
+ [-EnableAutoScaling] [- DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
31
31
```
32
32
33
33
## DESCRIPTION
@@ -49,6 +49,21 @@ PS C:\> New-AzAksNodePool -ResourceGroupName myResourceGroup -ClusterName myClus
49
49
50
50
## PARAMETERS
51
51
52
+ ### -AvailabilityZone
53
+ Availability zones for nodes. Must use VirtualMachineScaleSets AgentPoolType.
54
+
55
+ ``` yaml
56
+ Type : System.String[]
57
+ Parameter Sets : (All)
58
+ Aliases :
59
+
60
+ Required : False
61
+ Position : Named
62
+ Default value : None
63
+ Accept pipeline input : False
64
+ Accept wildcard characters : False
65
+ ` ` `
66
+
52
67
### -ClusterName
53
68
The name of the managed cluster resource.
54
69
0 commit comments