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.
56 lines
1.2 KiB
56 lines
1.2 KiB
3 years ago
|
---
|
||
|
apiVersion: apps/v1
|
||
3 years ago
|
kind: Deployment
|
||
3 years ago
|
metadata:
|
||
|
name: api-deployment
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: api # 选择这个指定标签执行
|
||
2 years ago
|
replicas: 1 # 运行pod数量
|
||
3 years ago
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: api # 标签
|
||
|
spec:
|
||
|
containers:
|
||
3 years ago
|
- name: api
|
||
2 years ago
|
image: openim/api:v2.3.4
|
||
2 years ago
|
# imagePullPolicy: Always
|
||
3 years ago
|
ports:
|
||
|
- containerPort: 10002
|
||
|
volumeMounts:
|
||
3 years ago
|
- name: config
|
||
3 years ago
|
mountPath: /Open-IM-Server/config
|
||
|
readOnly: true
|
||
2 years ago
|
- name: usualConfig
|
||
|
mountPath: /Open-IM-Server/config
|
||
|
readOnly: true
|
||
2 years ago
|
env:
|
||
|
- name: CONFIG_NAME
|
||
2 years ago
|
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
|
||
2 years ago
|
- name: usualConfig
|
||
|
configMap:
|
||
|
name: openim-usualConfig
|
||
3 years ago
|
strategy: #更新策略
|
||
3 years ago
|
type: RollingUpdate # 滚动更新
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: api
|
||
|
spec:
|
||
|
ports:
|
||
3 years ago
|
- name: api-port
|
||
3 years ago
|
protocol: TCP
|
||
3 years ago
|
port: 10002
|
||
|
targetPort: 10002
|
||
3 years ago
|
selector:
|
||
|
app: api
|
||
2 years ago
|
type: NodePort
|