|
| 1 | +{{- if or (ne .Values.php.preupgrade.command "") .Values.php.preupgrade.backup }} |
| 2 | +{{- $claimName := printf "%s-backup" .Release.Name }} |
| 3 | +{{- if and ( eq $.Values.backup.storageClassName "silta-shared" ) ( eq ( include "silta-cluster.rclone.has-provisioner" $ ) "true" ) }} |
| 4 | +{{- $claimName = printf "%s-backup2" .Release.Name }} |
| 5 | +{{- end }} |
| 6 | +{{- if lookup "v1" "PersistentVolumeClaim" .Release.Namespace $claimName }} |
| 7 | +apiVersion: batch/v1 |
| 8 | +kind: Job |
| 9 | +metadata: |
| 10 | + name: "{{ .Release.Name }}-pre-release" |
| 11 | + labels: |
| 12 | + {{- include "drupal.release_labels" . | nindent 4 }} |
| 13 | + annotations: |
| 14 | + # This is what defines this resource as a hook. Without this line, the |
| 15 | + # job is considered part of the release. |
| 16 | + "helm.sh/hook": "pre-upgrade" |
| 17 | + "helm.sh/hook-delete-policy": "before-hook-creation" |
| 18 | +spec: |
| 19 | + completions: 1 |
| 20 | + backoffLimit: 0 |
| 21 | + template: |
| 22 | + metadata: |
| 23 | + labels: |
| 24 | + {{- include "drupal.release_labels" . | nindent 8 }} |
| 25 | + spec: |
| 26 | + restartPolicy: Never |
| 27 | + enableServiceLinks: false |
| 28 | + containers: |
| 29 | + - name: pre-release |
| 30 | + {{- include "drupal.php-container" . | nindent 8 }} |
| 31 | + command: ["/bin/bash", "-c"] |
| 32 | + args: |
| 33 | + - | |
| 34 | + {{- include "drupal.pre-release-command" . | nindent 12 }} |
| 35 | + volumeMounts: |
| 36 | + {{- include "drupal.volumeMounts" . | nindent 10 }} |
| 37 | + {{- if .Values.php.preupgrade.backup }} |
| 38 | + - name: {{ .Release.Name }}-backup |
| 39 | + mountPath: /backups |
| 40 | + {{- end }} |
| 41 | + resources: |
| 42 | + {{- .Values.php.preupgrade.resources | toYaml | nindent 10 }} |
| 43 | + nodeSelector: |
| 44 | + {{- .Values.php.preupgrade.nodeSelector | toYaml | nindent 8 }} |
| 45 | + tolerations: |
| 46 | + {{- include "drupal.tolerations" .Values.php.preupgrade.nodeSelector | nindent 8 }} |
| 47 | + serviceAccountName: {{ include "drupal.serviceAccountName" . }} |
| 48 | + volumes: |
| 49 | + {{- include "drupal.volumes" . | nindent 8 }} |
| 50 | + {{- if .Values.php.preupgrade.backup }} |
| 51 | + - name: {{ .Release.Name }}-backup |
| 52 | + persistentVolumeClaim: |
| 53 | + {{- if and ( eq $.Values.backup.storageClassName "silta-shared" ) ( eq ( include "silta-cluster.rclone.has-provisioner" $ ) "true" ) }} |
| 54 | + claimName: {{ .Release.Name }}-backup2 |
| 55 | + {{- else }} |
| 56 | + claimName: {{ .Release.Name }}-backup |
| 57 | + {{- end }} |
| 58 | + {{- end }} |
| 59 | +{{- end }} |
| 60 | +{{- end }} |
0 commit comments