You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
964 B
29 lines
964 B
1 year ago
|
{{- if .Values.autoscaling.enabled }}
|
||
|
apiVersion: autoscaling/v2beta1
|
||
|
kind: HorizontalPodAutoscaler
|
||
|
metadata:
|
||
1 year ago
|
name: {{ include "openim-rpc-conversation.fullname" . }}
|
||
1 year ago
|
labels:
|
||
1 year ago
|
{{- include "openim-rpc-conversation.labels" . | nindent 4 }}
|
||
1 year ago
|
spec:
|
||
|
scaleTargetRef:
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
1 year ago
|
name: {{ include "openim-rpc-conversation.fullname" . }}
|
||
1 year ago
|
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 }}
|