Kubernetes AWS Cloudwatch 适配器未获取 EKS HPA 自动缩放的自定义指标值

标签 kubernetes amazon-cloudwatch autoscaling amazon-eks hpa

我正在尝试通过 Kubernetes Cloudwatch 适配器启用基于自定义 Cloudwatch 指标的 AWS EKS 自动缩放。我已将自定义指标推送到 AWS Cloudwatch,并验证它们出现在 Cloudwatch 控制台中,并且可以使用 boto3 客户端 get_metric_data 进行检索。这是我用来将自定义指标发布到 Cloudwatch 的代码:

import boto3
from datetime import datetime

client = boto3.client('cloudwatch')

cloudwatch_response = client.put_metric_data(
    Namespace='TestMetricNS',
    MetricData=[
        {
            'MetricName': 'TotalUnprocessed',
            'Timestamp': datetime.now(),
            'Value': 40,
            'Unit': 'Megabytes',
        }
    ]
)

我有以下 yaml 文件用于在 kubernetes 中建立外部指标和 hpa 自动缩放器:

extMetricCustom.yaml:

apiVersion: metrics.aws/v1alpha1
kind: ExternalMetric
metadata:
  name: test-custom-metric
spec:
  name: test-custom-metric
  resource:
    resource: "deployment"
  queries:
    - id: sqs_test
      metricStat:
        metric:
          namespace: "TestMetricNS"
          metricName: "TotalUnprocessed"
        period: 60
        stat: Average
        unit: Megabytes
      returnData: true

hpaCustomMetric.yaml

kind: HorizontalPodAutoscaler
apiVersion: autoscaling/v2beta1
metadata:
  name: test-scaler
spec:
  scaleTargetRef:
    apiVersion: apps/v1beta1
    kind: Deployment
    name: sqs-consumer
  minReplicas: 1
  maxReplicas: 4
  metrics:
  - type: External
    external:
      metricName: test-custom-metric
      targetAverageValue: 2

当我评估 Kubernetes Cloudwatch 适配器是否正确获取我的自定义指标 (kubectl get hpa) 时,它始终显示该指标为 0:

NAME          REFERENCE                 TARGETS     MINPODS   MAXPODS   REPLICAS   AGE
test-scaler   Deployment/sqs-consumer   0/2 (avg)   1         4         1          161m

如何根据我的 Cloudwatch 自定义指标正确地自动缩放?

最佳答案

在这个带外问题上与 OP 合作,并且在当天晚些时候仍然打开这个问题的选项卡,因此将结果发布在这里以供后代使用,以供偶然发现它的任何人使用。

问题的根本原因是时区冲突。指标监视器基于“当前”指标,但指标生成器脚本中的以下行生成了未指定时区的时间戳,并且也在本地时区中。

            'Timestamp': datetime.now(),

由于当前时区“没有数据”(由于 -X UTC 偏移,只有过去 X 小时的数据),系统没有启动缩放,因为值为“0”/nil/null有效地。相反,可以指定 UTC 时间字符串以确保生成的指标是及时的:

            'Timestamp': datetime.utcnow(),

次要考虑因素是 Kubernetes 节点需要访问权限以从 CloudWatch 轮询指标。这是通过附加 this policy 完成的到节点的 IAM 角色:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "cloudwatch:GetMetricData"
            ],
            "Resource": "*"
        }
    ]
}

关于Kubernetes AWS Cloudwatch 适配器未获取 EKS HPA 自动缩放的自定义指标值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63604513/

相关文章:

kubernetes - 在范围查询中查询事件和过时的Prometheus时间序列的最新值

amazon-cloudwatch - 如何在 AWS CloudWatch Insights 中按字段然后按 bin 聚合日志?

powershell - 更新 Azure VM 规模集上的 VHD

amazon-web-services - 使用 CloudFormation 将 LoadBalancer 批量添加到 AutoScaling 组

amazon-web-services - AWS Auto Scaling - 在服务器终止前缩减规模等待 x 分钟

kubernetes - 您可以在 Terraform 中使用 YAML 定义 Kubernetes 服务/Pod吗?

docker - presto-将 worker 从docker迁移到kubernetes

spring-boot - 如何将 spring boot maven 插件 build-image 与 skaffold 和 dekorate 一起使用?

amazon-web-services - 在单个指定的 future 时间仅调用 AWS Lambda 函数一次

amazon-web-services - 让 Cloudwatch 将 CreateLogGroup 消息发送到 EventBridge