Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add job template to deploy search #95

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions templates/job-deploy-search.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
{{- if and .Values.mastodon.deploySearch.enabled .Values.elasticsearch.enabled -}}
apiVersion: batch/v1
kind: Job
metadata:
name: {{ include "oliphaunt.fullname" . }}-deploy-search
labels:
{{- include "oliphaunt.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": post-install,post-upgrade
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
"helm.sh/hook-weight": "-2"
spec:
suspend: false
template:
metadata:
name: {{ include "oliphaunt.fullname" . }}-deploy-search
{{- with .Values.jobAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
restartPolicy: Never
{{- if (not .Values.mastodon.s3.enabled) }}
# ensure we run on the same node as the other rails components; only
# required when using PVCs that are ReadWriteOnce
{{- if or (eq "ReadWriteOnce" .Values.mastodon.persistence.assets.accessMode) (eq "ReadWriteOnce" .Values.persistence.system.accessMode) }}
affinity:
podAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app.kubernetes.io/part-of
operator: In
values:
- rails
topologyKey: kubernetes.io/hostname
{{- end }}
volumes:
- name: assets
persistentVolumeClaim:
claimName: {{ template "oliphaunt.fullname" . }}-assets
- name: system
persistentVolumeClaim:
claimName: {{ template "oliphaunt.fullname" . }}-system
{{- end }}
containers:
- name: {{ include "oliphaunt.fullname" . }}-deploy-search
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
resources:
requests:
cpu: 700m
memory: 768Mi
command:
- bin/tootctl
- search
- deploy
{{- with .Values.mastodon.deploySearch.concurrency }}
- '--concurrency'
- {{ . | quote }}
{{- end }}
{{- if .Values.mastodon.deploySearch.resetChewy }}
- '--reset-chewy'
{{- end }}
envFrom:
- configMapRef:
name: {{ include "oliphaunt.fullname" . }}-mastodon-env
- secretRef:
name: {{ template "mastodon.secretName" $ }}
env:
- name: "DB_PASS"
valueFrom:
secretKeyRef:
name: {{ template "mastodon.postgresql.secretName" . }}
key: password
- name: "REDIS_PASSWORD"
valueFrom:
secretKeyRef:
name: {{ template "mastodon.redis.secretName" . }}
key: redis-password
- name: "PORT"
value: {{ .Values.mastodon.web.port | quote }}
{{- if (not .Values.mastodon.s3.enabled) }}
volumeMounts:
- name: assets
mountPath: /opt/mastodon/public/assets
- name: system
mountPath: /opt/mastodon/public/system
{{- end }}
{{- end }}
5 changes: 5 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ mastodon:
enabled: true
# Custom labels to add to kubernetes resources
#labels:
# -- deploy search to elastsicsearch. Requires .elasticsearch.enabled = true
deploySearch:
enabled: false
concurrency: 5
resetChewy: true
cron:
# -- run `tootctl media remove` every week
removeMedia:
Expand Down
Loading