55 lines
1.6 KiB
Smarty
55 lines
1.6 KiB
Smarty
{{/* Define the cronjob */}}
|
|
{{- define "fireflyiii.cronjob" -}}
|
|
{{- $jobName := include "common.names.fullname" . }}
|
|
|
|
---
|
|
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: {{ printf "%s-cronjob" $jobName }}
|
|
labels:
|
|
{{- include "common.labels" . | nindent 4 }}
|
|
spec:
|
|
schedule: "{{ .Values.cronjob.schedule }}"
|
|
concurrencyPolicy: Forbid
|
|
{{- with .Values.cronjob.failedJobsHistoryLimit }}
|
|
failedJobsHistoryLimit: {{ . }}
|
|
{{- end }}
|
|
{{- with .Values.cronjob.successfulJobsHistoryLimit }}
|
|
successfulJobsHistoryLimit: {{ . }}
|
|
{{- end }}
|
|
jobTemplate:
|
|
metadata:
|
|
spec:
|
|
template:
|
|
metadata:
|
|
spec:
|
|
securityContext:
|
|
runAsUser: 568
|
|
runAsGroup: 568
|
|
restartPolicy: Never
|
|
containers:
|
|
- name: {{ .Chart.Name }}
|
|
securityContext:
|
|
privileged: false
|
|
readOnlyRootFilesystem: true
|
|
allowPrivilegeEscalation: false
|
|
runAsNonRoot: true
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
env:
|
|
- name: STATIC_CRON_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: fireflyiii-secrets
|
|
key: STATIC_CRON_TOKEN
|
|
image: "{{ .Values.alpineImage.repository }}:{{ .Values.alpineImage.tag }}"
|
|
args:
|
|
- curl
|
|
- "http://{{ $jobName }}.ix-{{ .Release.Name }}.svc.cluster.local:{{ .Values.service.main.ports.main.port }}/api/v1/cron/$(STATIC_CRON_TOKEN)"
|
|
resources:
|
|
{{ toYaml .Values.resources | indent 16 }}
|
|
|
|
{{- end -}}
|