mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
* build: k8s improve. * refactor: update docker image contents. * rename seq file. * build: update k8s origin deploys. * update check logic. * update magefile * update image name. * update readme * update Kubernetes Discovery. * revert pkg. * update create in k8s * update service image release CI. * update deployment image source. * update mage contents. * update pkg source. * update go get pkg. * fix test file. * update discovery register. * update * update deploy yaml. * update replica. * update deployment. * remove notfication config. * remove notification and zookeeper. * update discovery in kubernetes. * build: improve kubernetes deployment. * update config field in discovery. * update ReadMe in deployments. * update go mod. * update const quote. * fix test fields. * remove unused method. * remove unused contents.
29 lines
610 B
YAML
29 lines
610 B
YAML
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
|