mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 17:07:04 +02:00
* fix(common): Clean leftover `secret` behavior under `envFrom` * fix(common) wrong indentation in _cronjob.tpl (#99) * fixed wrong indentation, cronjob + configmaps throws an error otherwise * feat: Update code-server image tag to 4.9.1 * Allow setting `ttlSecondsAfterFinished` for CronJobs Co-authored-by: loeken <loeken@internetz.me>
46 lines
1.8 KiB
Smarty
46 lines
1.8 KiB
Smarty
{{/*
|
|
This template serves as a blueprint for Cronjob objects that are created
|
|
using the common library.
|
|
*/}}
|
|
{{- define "bjw-s.common.class.cronjob" -}}
|
|
{{- $restartPolicy := default "Never" .Values.controller.restartPolicy -}}
|
|
{{- if and (ne $restartPolicy "Never") (ne $restartPolicy "OnFailure") -}}
|
|
{{- fail (printf "Not a valid restartPolicy for CronJob (%s)" $restartPolicy) -}}
|
|
{{- end -}}
|
|
{{- $_ := set .Values.controller "restartPolicy" $restartPolicy -}}
|
|
---
|
|
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: {{ include "bjw-s.common.lib.chart.names.fullname" . }}
|
|
{{- with include "bjw-s.common.lib.controller.metadata.labels" . }}
|
|
labels: {{- . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with include "bjw-s.common.lib.controller.metadata.annotations" . }}
|
|
annotations: {{- . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
concurrencyPolicy: "{{ .Values.controller.cronjob.concurrencyPolicy }}"
|
|
startingDeadlineSeconds: {{ .Values.controller.cronjob.startingDeadlineSeconds }}
|
|
schedule: "{{ .Values.controller.cronjob.schedule }}"
|
|
successfulJobsHistoryLimit: {{ .Values.controller.cronjob.successfulJobsHistory }}
|
|
failedJobsHistoryLimit: {{ .Values.controller.cronjob.failedJobsHistory }}
|
|
jobTemplate:
|
|
spec:
|
|
{{- with .Values.controller.cronjob.ttlSecondsAfterFinished }}
|
|
ttlSecondsAfterFinished: {{ . }}
|
|
{{- end }}
|
|
template:
|
|
metadata:
|
|
{{- with include ("bjw-s.common.lib.metadata.podAnnotations") . }}
|
|
annotations:
|
|
{{- . | nindent 10 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "bjw-s.common.lib.metadata.selectorLabels" . | nindent 12 }}
|
|
{{- with .Values.podLabels }}
|
|
{{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- include "bjw-s.common.lib.controller.pod" . | nindent 10 }}
|
|
{{- end -}}
|