oneuptime/Ci/init-script/test.yaml
2022-04-11 14:11:16 +01:00

28 lines
949 B
YAML

#########
#Since Kubernetes jobs are immitable (you cannot update it with a new image).
# To update these jobs, CI deletes the old jobs and recreates them using this file.
#########
#########
#UPDATE: Any update to this file should also be accompanied with ../test.yaml
#########
########-InitScript-##########
apiVersion: batch/v1
kind: Job
metadata:
name: InitScript
spec:
template:
spec:
containers:
- name: InitScript
image: localhost:32000/InitScript:staging
imagePullPolicy: Always
env:
- name: MONGO_URL
value: 'mongodb://admin:372b60f4-704c-4205-8e5c-45cdbf44b1fc@mongo-0.mongo.default.svc.cluster.local:27017,mongo-1.mongo.default.svc.cluster.local:27017,mongo-2.mongo.default.svc.cluster.local:27017/oneuptimedb?replicaSet=rs0'
restartPolicy: Never
---
###########################