mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 16:32:12 +08:00 
			
		
		
		
	* build: k8s improve. * refactor: update docker image contents. * rename seq file. * build: update k8s origin deploys. * update check logic. * update magefile * update image name. * update readme * update Kubernetes Discovery. * revert pkg. * update create in k8s * update service image release CI. * update deployment image source. * update mage contents. * update pkg source. * update go get pkg. * fix test file. * update discovery register. * update * update deploy yaml. * update replica. * update deployment. * remove notfication config. * remove notification and zookeeper. * update discovery in kubernetes. * build: improve kubernetes deployment. * update config field in discovery. * update ReadMe in deployments. * update go mod. * update const quote. * fix test fields. * remove unused method. * remove unused contents.
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: apps/v1
 | |
| kind: Deployment
 | |
| metadata:
 | |
|   name: third-rpc-server
 | |
| spec:
 | |
|   replicas: 2
 | |
|   selector:
 | |
|     matchLabels:
 | |
|       app: third-rpc-server
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: third-rpc-server
 | |
|     spec:
 | |
|       containers:
 | |
|         - name: third-rpc-server-container
 | |
|           image: openim/openim-rpc-third:v3.8.3          
 | |
|           env:
 | |
|             - name: CONFIG_PATH
 | |
|               value: "/config"
 | |
|             - name: IMENV_MINIO_ACCESSKEYID
 | |
|               valueFrom:
 | |
|                 secretKeyRef:
 | |
|                   name: minio-secret
 | |
|                   key: minio-root-user
 | |
|             - name: IMENV_MINIO_SECRETACCESSKEY
 | |
|               valueFrom:
 | |
|                 secretKeyRef:
 | |
|                   name: minio-secret
 | |
|                   key: minio-root-password
 | |
|             - name: IMENV_REDIS_PASSWORD
 | |
|               valueFrom:
 | |
|                 secretKeyRef:
 | |
|                   name: redis-secret
 | |
|                   key: redis-password
 | |
|             - name: IMENV_MONGODB_PASSWORD
 | |
|               valueFrom:
 | |
|                 secretKeyRef:
 | |
|                   name: mongo-secret
 | |
|                   key: mongo_openim_password
 | |
|           volumeMounts:
 | |
|             - name: openim-config
 | |
|               mountPath: "/config"
 | |
|               readOnly: true
 | |
|           ports:
 | |
|             - containerPort: 10300
 | |
|             - containerPort: 12300
 | |
|       volumes:
 | |
|         - name: openim-config
 | |
|           configMap:
 | |
|             name: openim-config
 |