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.
|
|
|
---
|
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: sdk-server-deployment
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: sdk-server # 选择这个指定标签执行
|
|
|
|
replicas: 2 # 运行pod数量
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: sdk-server # 标签
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: sdk-server
|
|
|
|
image: openim/sdk_server:v2.0.10
|
|
|
|
ports:
|
|
|
|
- containerPort: 10003
|
|
|
|
volumeMounts:
|
|
|
|
- name: config
|
|
|
|
mountPath: /Open-IM-Server/config
|
|
|
|
readOnly: true
|
|
|
|
- name: local-db
|
|
|
|
mountPath: /db/sdk
|
|
|
|
command: ["/Open-IM-Server/main"]
|
|
|
|
args: ["-openIM_api_port", "10002", "-openIM_ws_port", "10001", "-sdk_ws_port", "10003", "-openIM_log_level", "6"]
|
|
|
|
volumes:
|
|
|
|
- name: config
|
|
|
|
configMap:
|
|
|
|
name: config
|
|
|
|
- name: local-db
|
|
|
|
hostPath:
|
|
|
|
path: /db/sdk
|
|
|
|
strategy: #更新策略
|
|
|
|
type: RollingUpdate # 滚动更新
|
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: sdk-server
|
|
|
|
spec:
|
|
|
|
ports:
|
|
|
|
- name: sdk-server-port
|
|
|
|
protocol: TCP
|
|
|
|
port: 10003
|
|
|
|
targetPort: 10003
|
|
|
|
selector:
|
|
|
|
app: demo
|
|
|
|
|
|
|
|
|