Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
1 contributor

Users who have contributed to this file

40 lines (40 sloc) 1.22 KB
apiVersion: batch/v1
kind: CronJob
metadata:
name: data-pipeline-sequence
spec:
schedule: "0 0 31 2 *" # This schedule will effectively never run automatically
jobTemplate:
spec:
template:
spec:
restartPolicy: OnFailure
volumes:
- name: shared-data
emptyDir: {}
initContainers:
- name: extract
image: us-docker.pkg.dev/${PROJECT_ID}/my-docker-repo/data-pipeline-extract:latest
envFrom:
- secretRef:
name: db-credentials
volumeMounts:
- name: shared-data
mountPath: /data
- name: load
image: us-docker.pkg.dev/${PROJECT_ID}/my-docker-repo/data-pipeline-load:latest
envFrom:
- secretRef:
name: db-credentials
volumeMounts:
- name: shared-data
mountPath: /data
containers:
- name: transform
image: us-docker.pkg.dev/${PROJECT_ID}/my-docker-repo/data-pipeline-transform:latest
envFrom:
- secretRef:
name: db-credentials
volumeMounts:
- name: shared-data
mountPath: /data