Files
open-im-server/deploy_k8s/admin_cms/deployment.yaml
T

32 lines
675 B
YAML
Raw Normal View History

2022-05-19 17:50:04 +08:00
---
apiVersion: apps/v1
2022-05-20 19:43:28 +08:00
kind: Deployment
2022-05-19 17:50:04 +08:00
metadata:
2022-05-20 19:43:28 +08:00
name: api-deployment
2022-05-19 17:50:04 +08:00
spec:
selector:
matchLabels:
2022-05-20 19:43:28 +08:00
app: admin_cms # 选择这个指定标签执行
replicas: 2 # 运行pod数量
2022-05-19 17:50:04 +08:00
template:
metadata:
labels:
2022-05-20 19:43:28 +08:00
app: api # 标签
2022-05-19 17:50:04 +08:00
spec:
containers:
2022-05-20 19:43:28 +08:00
- name: api
image: openim/api:v2.0.10
2022-05-19 17:50:04 +08:00
ports:
2022-05-20 19:43:28 +08:00
- containerPort: 10002
2022-05-19 17:50:04 +08:00
volumeMounts:
2022-05-20 19:43:28 +08:00
- name: config
mountPath: /Open-IM-Server/config
2022-05-19 17:50:04 +08:00
readOnly: true
volumes:
2022-05-20 19:43:28 +08:00
- name: config
configMap:
name: config
strategy: #更新策略
type: RollingUpdate # 滚动更新