Dela via


New-AksHciNodePool

Synopsis

Skapa en ny nodpool till ett befintligt kluster.

Syntax

New-AksHciNodePool -clusterName <String>
                   -name <String>
                  [-count <int>]
                  [-osType <String>]
                  [-vmSize <VmSize>]
                  [-taints <Taint>]
                  [-maxPodCount <int>]
                  [-disableAutoScaler]

Description

Skapa en ny nodpool till ett befintligt kluster.

Exempel

Skapa en ny nodpool med standardparametrar

New-AksHciNodePool -clusterName mycluster -name nodepool1

Skapa en Linux-nodpool

New-AksHciNodePool -clusterName mycluster -name linuxnodepool -osType linux

Skapa en Windows-nodpool

New-AksHciNodePool -clusterName mycluster -name windowsnodepool -osType Windows -osSku Windows2022

Skapa en nodpool med anpassad VM-storlek

New-AksHciNodePool -clusterName mycluster -name nodepool1 -vmSize Standard_A2_v2

Skapa en nodpool med taints

New-AksHciNodePool -clusterName mycluster -name nodepool1 -taints sku=gpu:NoSchedule

Skapa en nodpool med maximalt antal poddar

New-AksHciNodePool -clusterName mycluster -name nodepool1 -maxPodCount 100

Inaktivera horisontell autoskalning i en ny nodpool

Den här parametern ignoreras om den horisontella autoskalningen inte är aktiverad i klustret.

New-AksHciNodePool -clusterName mycluster -name nodepool1 -disableAutoscaler

Parametrar

-clusterName

Namnet på det befintliga Kubernetes-klustret.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Namn

Namnet på nodpoolen. Nodpoolens namn får inte vara samma som en annan befintlig nodpool.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Räkna

Nodantalet för nodpoolen. Standardvärdet är 1.

Type: System.Int32
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-osType

Operativsystemtypen för noderna i nodpoolen. Standardvärdet är Linux.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Linux
Accept pipeline input: False
Accept wildcard characters: False

-vmSize

VM-storleken på noderna i nodpoolen. Standardvärdet är Standard_K8S3_v1. Om du vill hämta tillgängliga VM-storlekar använder du kommandot Get-AksHciVmSize .

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Standard_K8S3_v1
Accept pipeline input: False
Accept wildcard characters: False

-taints

Nod-taints för nodpoolen. Du kan inte ändra nod-taints när nodpoolen har skapats.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-maxPodCount

Det maximala antalet poddar som kan distribueras till en nod. Det här antalet måste vara större än 50.

Type: System.Int32
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: 110
Accept pipeline input: False
Accept wildcard characters: False

-disableAutoScaler

Inaktivera horisontell autoskalning för den här nodpoolen. Endast giltigt om den horisontella autoskalningen är aktiverad för klustret.

Type: Parameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Nästa steg

AksHci PowerShell-referens