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.
30 lines
689 B
30 lines
689 B
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: message-cms-deployment
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: message-cms # 选择这个指定标签执行
|
|
replicas: 2 # 运行pod数量
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: message-cms # 标签
|
|
spec:
|
|
containers:
|
|
- name: message-cms
|
|
image: openim/message_cms:v2.0.10
|
|
ports:
|
|
- containerPort: 10190
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /Open-IM-Server/config
|
|
readOnly: true
|
|
volumes:
|
|
- name: config
|
|
configMap:
|
|
name: config
|
|
strategy: #更新策略
|
|
type: RollingUpdate # 滚动更新 |