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.
		
			
				
	
	
		
			88 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: apps/v1
 | |
| kind: Deployment
 | |
| metadata:
 | |
|   name: minio
 | |
|   labels:
 | |
|     app: minio
 | |
| spec:
 | |
|   replicas: 2
 | |
|   selector:
 | |
|     matchLabels:
 | |
|       app: minio
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: minio
 | |
|     spec:
 | |
|       containers:
 | |
|         - name: minio
 | |
|           image: minio/minio:RELEASE.2024-01-11T07-46-16Z
 | |
|           ports:
 | |
|             - containerPort: 9000 # MinIO service port
 | |
|             - containerPort: 9090 # MinIO console port
 | |
|           volumeMounts:
 | |
|             - name: minio-data
 | |
|               mountPath: /data
 | |
|             - name: minio-config
 | |
|               mountPath: /root/.minio
 | |
|           env:
 | |
|             - name: TZ
 | |
|               value: "Asia/Shanghai"
 | |
|             - name: MINIO_ROOT_USER
 | |
|               valueFrom:
 | |
|                 secretKeyRef:
 | |
|                   name: minio-secret
 | |
|                   key: minio-root-user
 | |
|             - name: MINIO_ROOT_PASSWORD
 | |
|               valueFrom:
 | |
|                 secretKeyRef:
 | |
|                   name: minio-secret
 | |
|                   key: minio-root-password
 | |
|           command:
 | |
|             - "/bin/sh"
 | |
|             - "-c"
 | |
|             - |
 | |
|               mkdir -p /data && \
 | |
|               minio server /data --console-address ":9090"
 | |
|       volumes:
 | |
|         - name: minio-data
 | |
|           persistentVolumeClaim:
 | |
|             claimName: minio-pvc
 | |
|         - name: minio-config
 | |
|           persistentVolumeClaim:
 | |
|             claimName: minio-config-pvc
 | |
| 
 | |
| ---
 | |
| apiVersion: v1
 | |
| kind: PersistentVolumeClaim
 | |
| metadata:
 | |
|   name: minio-pvc
 | |
| spec:
 | |
|   accessModes:
 | |
|     - ReadWriteOnce
 | |
|   resources:
 | |
|     requests:
 | |
|       storage: 10Gi
 | |
| 
 | |
| ---
 | |
| apiVersion: v1
 | |
| kind: PersistentVolumeClaim
 | |
| metadata:
 | |
|   name: minio-config-pvc
 | |
| spec:
 | |
|   accessModes:
 | |
|     - ReadWriteOnce
 | |
|   resources:
 | |
|     requests:
 | |
|       storage: 2Gi
 | |
| 
 | |
| ---
 | |
| apiVersion: v1
 | |
| kind: Secret
 | |
| metadata:
 | |
|   name: minio-secret
 | |
| type: Opaque
 | |
| data:
 | |
|   minio-root-user: cm9vdA== # Base64 encoded "root"
 | |
|   minio-root-password: b3BlbklNMTIz # Base64 encoded "openIM123"
 |