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.
29 lines
610 B
29 lines
610 B
1 month ago
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: openim-crontask
|
||
|
spec:
|
||
|
replicas: 2
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: crontask
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: crontask
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: crontask-container
|
||
|
image: openim/openim-crontask:v3.8.3
|
||
|
env:
|
||
|
- name: CONFIG_PATH
|
||
|
value: "/config"
|
||
|
volumeMounts:
|
||
|
- name: openim-config
|
||
|
mountPath: "/config"
|
||
|
readOnly: true
|
||
|
volumes:
|
||
|
- name: openim-config
|
||
|
configMap:
|
||
|
name: openim-config
|