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

42 lines
825 B
YAML
Raw Normal View History

2022-05-19 17:50:04 +08:00
---
apiVersion: apps/v1
2022-05-19 19:12:35 +08:00
kind: Deployment
2022-05-19 17:50:04 +08:00
metadata:
name: api-deployment
spec:
selector:
matchLabels:
app: api # 选择这个指定标签执行
replicas: 2 # 运行pod数量
template:
metadata:
labels:
app: api # 标签
spec:
containers:
- name: api
image: openim/api:2.0.10
ports:
- containerPort: 10002
volumeMounts:
- name: cfg
mountPath: /Open-IM-Server/config/config.yaml
subPath: config.yaml
2022-05-19 19:03:27 +08:00
strategy: #更新策略
2022-05-19 17:50:04 +08:00
type: RollingUpdate # 滚动更新
---
apiVersion: v1
kind: Service
metadata:
name: api
spec:
externalTrafficPolicy: Cluster
ports:
- name: apiPort
port: 10002
protocol: TCP
targetPort: 10002
selector:
app: api
type: NodePort