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

45 lines
913 B

3 years ago
---
apiVersion: apps/v1
3 years ago
kind: Deployment
3 years ago
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:
3 years ago
- name: config
3 years ago
mountPath: /Open-IM-Server/config/config.yaml
subPath: config.yaml
3 years ago
volumes:
- name: config
configMap:
name: myconfigmap
3 years ago
strategy: #更新策略
3 years ago
type: RollingUpdate # 滚动更新
---
apiVersion: v1
kind: Service
metadata:
name: api
spec:
externalTrafficPolicy: Cluster
ports:
port: 10002
protocol: TCP
targetPort: 10002
selector:
app: api
type: NodePort