Skip to content

Instantly share code, notes, and snippets.

@gitumarkk
Last active January 13, 2018 19:10
Show Gist options
  • Save gitumarkk/735fcd04960461da04e97d535cb16a75 to your computer and use it in GitHub Desktop.
Save gitumarkk/735fcd04960461da04e97d535cb16a75 to your computer and use it in GitHub Desktop.
apiVersion: batch/v1
kind: Job
metadata:
name: django-migrations
spec:
template:
spec:
containers:
- name: django
image: gitumarkk/k8_django_minikube:part_3
command: ['python', 'manage.py', 'migrate']
env:
- name: POSTGRES_USER
valueFrom:
secretKeyRef:
name: postgres-credentials
key: user
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: postgres-credentials
key: password
- name: POSTGRES_HOST
value: postgres-service
restartPolicy: Never
backoffLimit: 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment