28 lines
733 B
YAML
28 lines
733 B
YAML
{{- if .Values.hpa.enabled }}
|
|||
|
|
apiVersion: autoscaling/v2
|
||
|
|
kind: HorizontalPodAutoscaler
|
||
|
|
metadata:
|
||
|
|
name: management-service
|
||
|
|
namespace: {{ .Values.namespace }}
|
||
|
|
spec:
|
||
|
|
scaleTargetRef:
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
name: management-service
|
||
|
|
minReplicas: {{ .Values.hpa.minReplicas }}
|
||
|
|
maxReplicas: {{ .Values.hpa.maxReplicas }}
|
||
|
|
metrics:
|
||
|
|
- type: Resource
|
||
|
|
resource:
|
||
|
|
name: cpu
|
||
|
|
target:
|
||
|
|
type: Utilization
|
||
|
|
averageUtilization: {{ .Values.hpa.targetCPUUtilizationPercentage }}
|
||
|
|
- type: Resource
|
||
|
|
resource:
|
||
|
|
name: memory
|
||
|
|
target:
|
||
|
|
type: Utilization
|
||
|
|
averageUtilization: {{ .Values.hpa.targetMemoryUtilizationPercentage }}
|
||
|
|
{{- end }}
|