New-AksHciAutoScalerProfile
摘要
为节点池自动缩放程序创建新的自动缩放程序配置文件。 自动缩放程序配置文件存储在 AKS 混合部署范围内,可以跨多个群集重复使用。 更改配置文件会影响使用该配置文件的所有群集。
语法
创建新的自动缩放程序配置文件
New-AksHciAutoScalerProfile
-name myProfile
-autoScalerProfileConfig @{ "min-node-count"=2; "max-node-count"=7; 'scale-down-unneeded-time'='1m'}
说明
创建新的自动缩放程序配置文件,将最小节点计数设置为 2,将最大节点计数设置为 7,将系统等待不需要的节点数再次纵向缩减的时间设置为 1 分钟。
示例
创建默认自动缩放程序配置文件的副本,最小节点计数为 1,最大节点计数为 3
New-AksHciAutoScalerProfile -name myProfile -autoScalerProfileConfig @{ "min-node-count"=1; "max-node-count"=3}
参数
-name
自动缩放程序配置文件的字母数字名称。
Type: System.String
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-autoScalerProfileConfig
要从默认配置文件值更改的键值对参数数组。 如果未指定值,则假定为默认值。 有关更多详细信息,请参阅文档:使用自动缩放程序配置文件配置群集自动缩放程序。 min-node-count 的默认值为 0,max-node-count 为 1。
Type: Hashtable
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: 1
Accept pipeline input: False
Accept wildcard characters: False