You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/deploy_k8s/msg_transfer/deployment.yaml

30 lines
684 B

3 years ago
---
apiVersion: apps/v1
kind: Deployment
metadata:
3 years ago
name: msg-transfer-deployment
3 years ago
spec:
selector:
matchLabels:
3 years ago
app: msg-transfer # 选择这个指定标签执行
3 years ago
replicas: 2 # 运行pod数量
template:
metadata:
labels:
3 years ago
app: msg-transfer # 标签
3 years ago
spec:
containers:
3 years ago
- name: msg-transfer
3 years ago
image: openim/msg_transfer:v2.0.10k
2 years ago
# imagePullPolicy: Always
3 years ago
volumeMounts:
- name: config
mountPath: /Open-IM-Server/config
readOnly: true
volumes:
- name: config
configMap:
name: config
strategy: #更新策略
type: RollingUpdate # 滚动更新