2021-02-15 07:00:54 +00:00
|
|
|
{{ if .Values.mastodon.cron.removeMedia.enabled }}
|
2022-08-10 15:12:58 +00:00
|
|
|
apiVersion: batch/v1
|
2020-10-12 23:19:13 +00:00
|
|
|
kind: CronJob
|
|
|
|
metadata:
|
|
|
|
name: {{ include "mastodon.fullname" . }}-media-remove
|
|
|
|
labels:
|
|
|
|
{{- include "mastodon.labels" . | nindent 4 }}
|
|
|
|
spec:
|
2021-02-15 07:00:54 +00:00
|
|
|
schedule: {{ .Values.mastodon.cron.removeMedia.schedule }}
|
2020-10-12 23:19:13 +00:00
|
|
|
jobTemplate:
|
|
|
|
spec:
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
name: {{ include "mastodon.fullname" . }}-media-remove
|
2022-08-25 02:40:38 +00:00
|
|
|
{{- with .Values.jobAnnotations }}
|
|
|
|
annotations:
|
|
|
|
{{- toYaml . | nindent 12 }}
|
|
|
|
{{- end }}
|
2020-10-12 23:19:13 +00:00
|
|
|
spec:
|
|
|
|
restartPolicy: OnFailure
|
2021-02-19 08:52:32 +00:00
|
|
|
{{- if (not .Values.mastodon.s3.enabled) }}
|
2020-10-12 23:19:13 +00:00
|
|
|
# ensure we run on the same node as the other rails components; only
|
|
|
|
# required when using PVCs that are ReadWriteOnce
|
2021-02-15 07:00:54 +00:00
|
|
|
{{- if or (eq "ReadWriteOnce" .Values.mastodon.persistence.assets.accessMode) (eq "ReadWriteOnce" .Values.mastodon.persistence.system.accessMode) }}
|
2020-10-12 23:19:13 +00:00
|
|
|
affinity:
|
|
|
|
podAffinity:
|
|
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
|
|
- labelSelector:
|
|
|
|
matchExpressions:
|
|
|
|
- key: component
|
|
|
|
operator: In
|
|
|
|
values:
|
|
|
|
- rails
|
|
|
|
topologyKey: kubernetes.io/hostname
|
|
|
|
{{- end }}
|
|
|
|
volumes:
|
|
|
|
- name: assets
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: {{ template "mastodon.fullname" . }}-assets
|
|
|
|
- name: system
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: {{ template "mastodon.fullname" . }}-system
|
2021-02-19 08:52:32 +00:00
|
|
|
{{- end }}
|
2020-10-12 23:19:13 +00:00
|
|
|
containers:
|
|
|
|
- name: {{ include "mastodon.fullname" . }}-media-remove
|
|
|
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
|
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
|
|
command:
|
|
|
|
- bin/tootctl
|
|
|
|
- media
|
|
|
|
- remove
|
|
|
|
envFrom:
|
|
|
|
- configMapRef:
|
|
|
|
name: {{ include "mastodon.fullname" . }}-env
|
|
|
|
- secretRef:
|
2022-08-10 15:12:58 +00:00
|
|
|
name: {{ template "mastodon.secretName" . }}
|
2020-10-12 23:19:13 +00:00
|
|
|
env:
|
|
|
|
- name: "DB_PASS"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
2022-08-10 15:12:58 +00:00
|
|
|
name: {{ template "mastodon.postgresql.secretName" . }}
|
2022-10-29 23:30:16 +00:00
|
|
|
key: postgres-password
|
2020-10-12 23:19:13 +00:00
|
|
|
- name: "REDIS_PASSWORD"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
2022-08-10 15:12:58 +00:00
|
|
|
name: {{ template "mastodon.redis.secretName" . }}
|
2020-10-12 23:19:13 +00:00
|
|
|
key: redis-password
|
|
|
|
- name: "PORT"
|
2021-02-15 07:00:54 +00:00
|
|
|
value: {{ .Values.mastodon.web.port | quote }}
|
2021-02-19 08:52:32 +00:00
|
|
|
{{- if (not .Values.mastodon.s3.enabled) }}
|
2020-10-12 23:19:13 +00:00
|
|
|
volumeMounts:
|
|
|
|
- name: assets
|
|
|
|
mountPath: /opt/mastodon/public/assets
|
|
|
|
- name: system
|
|
|
|
mountPath: /opt/mastodon/public/system
|
2021-02-19 08:52:32 +00:00
|
|
|
{{- end }}
|
2020-10-12 23:19:13 +00:00
|
|
|
{{- end }}
|