为 cloudformation 中的 AWS EKS 节点组定义自动扩展策略

问题描述

我使用托管节点组 (https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html) 选项进行处理。它正在工作。但是如何定义自动缩放策略。它只允许给出最大和最小节点数,甚至没有名称

  BatchJobNodeGroup:
Type: 'AWS::EKS::Nodegroup'
Properties:
  ClusterName: !Ref EksCluster
  CapacityType: !Ref NodeCapacityType
  diskSize: !Ref NodeVolumeSize
  AmiType: !Ref AmiType
  InstanceTypes: [!Ref NodeInstanceType]
  NodeRole:
    "Fn::GetAtt": ["EKSIAMRole","Arn"]
  ScalingConfig:
    MinSize: !Ref NodeAutoScalingGroupMinSize
    DesiredSize: !Ref NodeAutoScalingGroupDesiredCapacity
    MaxSize: !Ref NodeAutoScalingGroupMaxSize
  Labels:
    NodeGroup: BatchJobNodeGroup
  subnets:
    - !Ref Privatesubnet01
    - !Ref Privatesubnet02

在 ScalingConfig 中,我也无法传递任何额外的参数。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)