0

hpa内で次のメトリックを使用しました

apiVersion: autoscaling/v2beta2
kind: HorizontalPodAutoscaler
metadata:
  name: app-svc-hpa
  namespace: default
spec:
  scaleTargetRef:
    apiVersion: extensions/v1beta1
    kind: Deployment
    name: app-svc
  minReplicas: 1
  maxReplicas: 1000
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 50
  - type: Pods
    pods:
      metric:
        name: packets-per-second
      target:
        type: AverageValue
        averageValue: 1k

しかし、hpa はメトリックを取得できません

Warning FailedGetPodsMetric 14s (x6 over 1m) horizontal-pod-autoscaler unable to get metric packets-per-second: unable to fetch metrics from custom metrics API: the server could not find the descriptor for metric custom.googleapis.com/packets-per-second: googleapi: Error 403: Permission monitoring.metricDescriptors.get denied (or the resource may not exist)., forbidden

専用ノードプールでポッドを実行しており、各ノードはサービス アカウントで実行されています。

サービス アカウントにはこれらの IAM ロールがあります

Monitoring Viewere、Monitoring Metrics Writer

このエラーを修正する方法がわかりません。どんなポインタでも大歓迎です。ありがとう。

4

1 に答える 1