mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 16:32:12 +08:00 
			
		
		
		
	* docs: add openim cluster helm chart Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * docs: add openim scripts deployment system Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * docs: add all openim helm chart deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * docs: add all openim helm chart deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim install scripts docs Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim kubernetes deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim kubernetes deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim kubernetes deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim kubernetes deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: openim images version Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: make image Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim helm charts Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim helm charts Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim config docs Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: apps/v1
 | |
| kind: Deployment
 | |
| metadata:
 | |
|   name: {{ include "openim-rpc-msg.fullname" . }}
 | |
|   labels:
 | |
|     {{- include "openim-rpc-msg.labels" . | nindent 4 }}
 | |
| spec:
 | |
|   {{- if not .Values.autoscaling.enabled }}
 | |
|   replicas: {{ .Values.replicaCount }}
 | |
|   {{- end }}
 | |
|   selector:
 | |
|     matchLabels:
 | |
|       {{- include "openim-rpc-msg.selectorLabels" . | nindent 6 }}
 | |
|   template:
 | |
|     metadata:
 | |
|       {{- with .Values.podAnnotations }}
 | |
|       annotations:
 | |
|         {{- toYaml . | nindent 8 }}
 | |
|       {{- end }}
 | |
|       labels:
 | |
|         {{- include "openim-rpc-msg.selectorLabels" . | nindent 8 }}
 | |
|     spec:
 | |
|       {{- with .Values.imagePullSecrets }}
 | |
|       imagePullSecrets:
 | |
|         {{- toYaml . | nindent 8 }}
 | |
|       {{- end }}
 | |
|       serviceAccountName: {{ include "openim-rpc-msg.serviceAccountName" . }}
 | |
|       securityContext:
 | |
|         {{- toYaml .Values.podSecurityContext | nindent 8 }}
 | |
|       containers:
 | |
|         - name: {{ .Chart.Name }}
 | |
|           securityContext:
 | |
|             {{- toYaml .Values.securityContext | nindent 12 }}
 | |
|           image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
 | |
|           imagePullPolicy: {{ .Values.image.pullPolicy }}
 | |
|           ports:
 | |
|             - name: http
 | |
|               containerPort: 80
 | |
|               protocol: TCP
 | |
|           #livenessProbe:
 | |
|           #  httpGet:
 | |
|           #    path: /
 | |
|           #    port: http
 | |
|           #readinessProbe:
 | |
|           #  httpGet:
 | |
|           #    path: /
 | |
|           #    port: http
 | |
|           resources:
 | |
|             {{- toYaml .Values.resources | nindent 12 }}
 | |
|           volumeMounts:
 | |
|             - mountPath: /config/config.yaml
 | |
|               name: config
 | |
|               subPath: config.yaml
 | |
|             - mountPath: /config/notification.yaml
 | |
|               name: config
 | |
|               subPath: notification.yaml
 | |
|       volumes:
 | |
|         - name: config
 | |
|           configMap:
 | |
|             name: openim-cm
 | |
|       {{- with .Values.nodeSelector }}
 | |
|       nodeSelector:
 | |
|         {{- toYaml . | nindent 8 }}
 | |
|       {{- end }}
 | |
|       {{- with .Values.affinity }}
 | |
|       affinity:
 | |
|         {{- toYaml . | nindent 8 }}
 | |
|       {{- end }}
 | |
|       {{- with .Values.tolerations }}
 | |
|       tolerations:
 | |
|         {{- toYaml . | nindent 8 }}
 | |
|       {{- end }}
 |