Files
pezkuwi-telemetry/helm/templates/shard-hpa.yaml
T
Arsham Teymourı 55537af6f5 extending the helm chart
exposing telemetry core service

adding hpa support for telemetry shard
2021-08-02 12:00:42 +03:00

30 lines
921 B
YAML

{{- if .Values.autoscaling.enabled }}
apiVersion: autoscaling/v2beta1
kind: HorizontalPodAutoscaler
metadata:
name: telemetry-shard
labels:
{{- include "substrate-telemetry.labels" . | nindent 4 }}
telemetry-component: shard
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: telemetry-shard
minReplicas: {{ .Values.autoscaling.minReplicas }}
maxReplicas: {{ .Values.autoscaling.maxReplicas }}
metrics:
{{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
- type: Resource
resource:
name: cpu
targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
{{- end }}
{{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
- type: Resource
resource:
name: memory
targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
{{- end }}
{{- end }}