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

47 lines
916 B

2 years ago
---
apiVersion: apps/v1
2 years ago
kind: Deployment
2 years ago
metadata:
name: api-deployment
spec:
selector:
matchLabels:
app: api # 选择这个指定标签执行
replicas: 2 # 运行pod数量
template:
metadata:
labels:
app: api # 标签
spec:
containers:
2 years ago
- name: api
2 years ago
image: openim/api:v2.0.10
2 years ago
ports:
- containerPort: 10002
volumeMounts:
2 years ago
- name: config
2 years ago
mountPath: /Open-IM-Server/config
readOnly: true
2 years ago
env:
- name: CONFIG_NAME
value: "/Open-IM-Server"
2 years ago
volumes:
- name: config
configMap:
2 years ago
name: config
2 years ago
strategy: #更新策略
2 years ago
type: RollingUpdate # 滚动更新
---
apiVersion: v1
kind: Service
metadata:
name: api
spec:
ports:
2 years ago
- name: api-port
2 years ago
protocol: TCP
2 years ago
port: 10002
targetPort: 10002
2 years ago
selector:
app: api