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

31 lines
694 B
YAML
Raw Normal View History

2022-05-23 00:55:56 +08:00
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: group-deployment
spec:
selector:
matchLabels:
app: group # 选择这个指定标签执行
replicas: 2 # 运行pod数量
template:
metadata:
labels:
app: group # 标签
spec:
containers:
- name: group
2022-05-30 20:29:22 +08:00
image: openim/group:v2.0.10k
2022-06-05 23:42:27 +08:00
# imagePullPolicy: Always
2022-05-23 00:55:56 +08:00
ports:
- containerPort: 10150
volumeMounts:
- name: config
mountPath: /Open-IM-Server/config
readOnly: true
volumes:
- name: config
configMap:
name: config
strategy: #更新策略
type: RollingUpdate # 滚动更新