k8s_deployment

This commit is contained in:
wangchuxiao
2022-05-23 00:55:56 +08:00
committed by Xinwei Xiong(cubxxw-openim)
parent 270034204c
commit c4d3f87bf1
24 changed files with 677 additions and 21 deletions
+30
View File
@@ -0,0 +1,30 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: msg-deployment
spec:
selector:
matchLabels:
app: msg # 选择这个指定标签执行
replicas: 2 # 运行pod数量
template:
metadata:
labels:
app: msg # 标签
spec:
containers:
- name: msg
image: openim/msg:v2.0.10
ports:
- containerPort: 10130
volumeMounts:
- name: config
mountPath: /Open-IM-Server/config
readOnly: true
volumes:
- name: config
configMap:
name: config
strategy: #更新策略
type: RollingUpdate # 滚动更新