1

このようなHPAを持っています。Pod は適切にスケーリングされていますが、スケーリングはされておらず、CPU 使用率はわずか 5% です。最小の 1 つのレプリカにスケールダウンしていません。

以下は私のHPAです

apiVersion: autoscaling/v2beta2
kind: HorizontalPodAutoscaler
metadata:
  name: app
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: app
  minReplicas: 1
  maxReplicas: 10
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 70
  - type: Resource
    resource:
      name: memory
      target:
        type: AverageValue
        averageValue: 100Mi
4

1 に答える 1