2024-12-12 22:33:45 +01:00
|
|
|
apiVersion: batch/v1
|
|
|
|
kind: Job
|
|
|
|
metadata:
|
|
|
|
name: {{ include "pretix.fullname" . }}-migrate
|
|
|
|
labels:
|
|
|
|
{{- include "pretix.labels" . | nindent 4 }}
|
|
|
|
annotations:
|
2025-02-02 19:31:31 +01:00
|
|
|
"helm.sh/hook": post-install,post-upgrade
|
|
|
|
"helm.sh/hook-weight": "5"
|
|
|
|
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
|
2024-12-12 22:33:45 +01:00
|
|
|
spec:
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
annotations:
|
|
|
|
checksum/secret: {{ toYaml .Values.env | sha256sum }}
|
|
|
|
{{- with .Values.podAnnotations }}
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
labels:
|
|
|
|
{{- include "pretix.labels" . | nindent 8 }}
|
|
|
|
app.kubernetes.io/component: cronjob
|
|
|
|
{{- with .Values.podLabels }}
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
spec:
|
|
|
|
{{- with .Values.imagePullSecrets }}
|
|
|
|
imagePullSecrets:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
serviceAccountName: {{ include "pretix.serviceAccountName" . }}
|
|
|
|
securityContext:
|
|
|
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
|
|
|
restartPolicy: OnFailure
|
|
|
|
containers:
|
|
|
|
- name: {{ .Chart.Name }}
|
|
|
|
securityContext:
|
|
|
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
|
|
|
{{- with .Values.image }}
|
|
|
|
image: "{{ .registry }}/{{ .repository }}:{{ .tag | default $.Chart.AppVersion }}"
|
|
|
|
imagePullPolicy: {{ .pullPolicy }}
|
|
|
|
{{- end }}
|
|
|
|
envFrom:
|
|
|
|
- secretRef:
|
|
|
|
name: {{ include "pretix.fullname" . }}
|
|
|
|
command: [ "pretix" ]
|
|
|
|
args: [ "migrate" ]
|
|
|
|
resources:
|
|
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
|
|
volumeMounts:
|
|
|
|
- name: pretix-data
|
|
|
|
mountPath: /data
|
|
|
|
{{- with .Values.volumeMounts }}
|
|
|
|
{{- toYaml . | nindent 12 }}
|
|
|
|
{{- end }}
|
|
|
|
volumes:
|
|
|
|
- name: pretix-data
|
|
|
|
{{- if .Values.persistence.hostPath }}
|
|
|
|
hostPath:
|
|
|
|
type: Directory
|
|
|
|
path: {{ .Values.persistence.hostPath | quote }}
|
|
|
|
{{- else if .Values.persistence.enabled }}
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: {{ with .Values.persistence.existingClaim }}{{ . }}{{- else }}{{ template "pretix.fullname" . }}{{- end }}
|
|
|
|
{{- else }}
|
|
|
|
emptyDir: {}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.volumes }}
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.nodeSelector }}
|
|
|
|
nodeSelector:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.affinity }}
|
|
|
|
affinity:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.tolerations }}
|
|
|
|
tolerations:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|