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/deployk8s/push/deployment.yaml

42 lines
1.0 KiB

3 years ago
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: push-deployment
spec:
selector:
matchLabels:
app: push # 选择这个指定标签执行
2 years ago
replicas: 1 # 运行pod数量
3 years ago
template:
metadata:
labels:
app: push # 标签
spec:
containers:
- name: push
image: openim/push:v2.3.4
2 years ago
# imagePullPolicy: Always
3 years ago
ports:
- containerPort: 10170
volumeMounts:
- name: config
mountPath: /Open-IM-Server/config
readOnly: true
- name: usualConfig
mountPath: /Open-IM-Server/config
readOnly: true
2 years ago
env:
- name: CONFIG_NAME
value: "/Open-IM-Server"
- name: USUAL_CONFIG_NAME
value: "/Open-IM-Server"
3 years ago
volumes:
- name: config
configMap:
2 years ago
name: openim-config
- name: usualConfig
configMap:
name: openim-usualConfig
3 years ago
strategy: #更新策略
type: RollingUpdate # 滚动更新