mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 16:32:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			946 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			946 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| {{- if .Values.autoscaling.enabled }}
 | |
| apiVersion: autoscaling/v2beta1
 | |
| kind: HorizontalPodAutoscaler
 | |
| metadata:
 | |
|   name: {{ include "openim-msggateway.fullname" . }}
 | |
|   labels:
 | |
|     {{- include "openim-msggateway.labels" . | nindent 4 }}
 | |
| spec:
 | |
|   scaleTargetRef:
 | |
|     apiVersion: apps/v1
 | |
|     kind: Deployment
 | |
|     name: {{ include "openim-msggateway.fullname" . }}
 | |
|   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 }}
 |