123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {{ $cronjob_values := (. | mustDeepCopy) }}
- {{ $_ := set $cronjob_values "common" (dict "nameSuffix" "cronjob") }}
- {{ $hostName := .Values.nextcloud.host }}
- {{ if .Values.useServiceNameForHost }}
- {{ $hostName = (include "common.names.fullname" .) }}
- {{ end }}
- {{if .Values.cronjob.enabled }}
- apiVersion: batch/v1
- kind: CronJob
- metadata:
- name: {{ template "common.names.fullname" $cronjob_values }}
- labels:
- app: {{ template "common.names.name" $cronjob_values }}
- chart: {{ template "common.names.chart" $cronjob_values }}
- release: {{ .Release.Name }}
- annotations:
- rollme: {{ randAlphaNum 5 | quote }}
- spec:
- schedule: "{{ .Values.cronjob.schedule }}"
- concurrencyPolicy: Forbid
- failedJobsHistoryLimit: 2
- successfulJobsHistoryLimit: 1
- jobTemplate:
- metadata:
- labels:
- app: {{ template "common.names.name" $cronjob_values }}
- release: {{ .Release.Name }}
- {{- include "common.labels.selectorLabels" $cronjob_values | nindent 8 }}
- spec:
- template:
- metadata:
- labels:
- app: {{ template "common.names.name" $cronjob_values }}
- release: {{ .Release.Name }}
- {{- include "common.labels.selectorLabels" $cronjob_values | nindent 12 }}
- spec:
- restartPolicy: Never
- securityContext:
- runAsUser: 33
- runAsGroup: 0
- fsGroup: 33
- containers:
- - name: {{ .Chart.Name }}-cronjob
- image: "{{.Values.image.repository }}:{{.Values.image.tag }}"
- imagePullPolicy: {{ .Values.image.pullPolicy }}
- command:
- - php
- - -f
- - /var/www/html/cron.php
- volumeMounts:
- - name: nextcloud-data
- mountPath: /var/www/
- subPath: "root"
- - name: nextcloud-data
- mountPath: /var/www/html
- subPath: "html"
- - name: nextcloud-data
- mountPath: {{ .Values.nextcloud.datadir }}
- subPath: "data"
- - name: nextcloud-data
- mountPath: /var/www/html/config
- subPath: "config"
- - name: nextcloud-data
- mountPath: /var/www/html/custom_apps
- subPath: "custom_apps"
- - name: nextcloud-data
- mountPath: /var/www/tmp
- subPath: "tmp"
- - name: nextcloud-data
- mountPath: /var/www/html/themes
- subPath: "themes"
- volumes:
- {{ if .Values.appVolumeMounts }}
- {{- include "common.storage.configureAppVolumes" .Values | nindent 12 }}
- {{ end }}
- {{ end }}
|