2023-04-08 19:26:41 +00:00
|
|
|
{{- $context := . }}
|
|
|
|
{{- range .Values.mastodon.sidekiq.workers }}
|
|
|
|
---
|
2021-02-09 23:28:44 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
2023-04-08 19:26:41 +00:00
|
|
|
name: {{ include "mastodon.fullname" $context }}-sidekiq-{{ .name }}
|
2021-02-09 23:28:44 +00:00
|
|
|
labels:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- include "mastodon.labels" $context | nindent 4 }}
|
|
|
|
app.kubernetes.io/component: sidekiq-{{ .name }}
|
|
|
|
app.kubernetes.io/part-of: rails
|
2024-06-01 00:42:03 +00:00
|
|
|
annotations:
|
|
|
|
{{- with $context.Values.deploymentAnnotations }}
|
|
|
|
{{- toYaml . | nindent 4 }}
|
|
|
|
{{- end }}
|
2021-02-09 23:28:44 +00:00
|
|
|
spec:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- if (has "scheduler" .queues) }}
|
|
|
|
{{- if (gt (int .replicas) 1) }}
|
|
|
|
{{ fail "The scheduler queue should never have more than 1 replicas" }}
|
|
|
|
{{- end }}
|
|
|
|
strategy:
|
|
|
|
type: Recreate
|
|
|
|
{{- end }}
|
|
|
|
replicas: {{ .replicas }}
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- if (ne (toString $context.Values.mastodon.revisionHistoryLimit) "<nil>") }}
|
|
|
|
revisionHistoryLimit: {{ $context.Values.mastodon.revisionHistoryLimit }}
|
|
|
|
{{- end }}
|
2021-02-09 23:28:44 +00:00
|
|
|
selector:
|
|
|
|
matchLabels:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- include "mastodon.selectorLabels" $context | nindent 6 }}
|
|
|
|
app.kubernetes.io/component: sidekiq-{{ .name }}
|
|
|
|
app.kubernetes.io/part-of: rails
|
2021-02-09 23:28:44 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- with $context.Values.podAnnotations }}
|
2021-02-09 23:28:44 +00:00
|
|
|
{{- toYaml . | nindent 8 }}
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- end }}
|
|
|
|
# roll the pods to pick up any db migrations or other changes
|
|
|
|
{{- include "mastodon.rollingPodAnnotations" $context | nindent 8 }}
|
2024-06-01 00:42:03 +00:00
|
|
|
checksum/config-secrets-smtp: {{ include ( print $.Template.BasePath "/secret-smtp.yaml" ) $context | sha256sum | quote }}
|
2021-02-09 23:28:44 +00:00
|
|
|
labels:
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- include "mastodon.globalLabels" $context | nindent 8 }}
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- include "mastodon.selectorLabels" $context | nindent 8 }}
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- include "mastodon.statsdExporterLabels" $context | nindent 8 }}
|
2023-04-08 19:26:41 +00:00
|
|
|
app.kubernetes.io/component: sidekiq-{{ .name }}
|
|
|
|
app.kubernetes.io/part-of: rails
|
2021-02-09 23:28:44 +00:00
|
|
|
spec:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- with $context.Values.imagePullSecrets }}
|
2021-02-09 23:28:44 +00:00
|
|
|
imagePullSecrets:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
2023-04-08 19:26:41 +00:00
|
|
|
serviceAccountName: {{ include "mastodon.serviceAccountName" $context }}
|
|
|
|
{{- with (default $context.Values.podSecurityContext $context.Values.mastodon.sidekiq.podSecurityContext) }}
|
2021-02-09 23:28:44 +00:00
|
|
|
securityContext:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with (default (default $context.Values.affinity $context.Values.mastodon.sidekiq.affinity) .affinity) }}
|
2021-02-09 23:28:44 +00:00
|
|
|
affinity:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- toYaml . | nindent 8 }}
|
2021-02-09 23:28:44 +00:00
|
|
|
{{- end }}
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- with (default (default $context.Values.topologySpreadConstraints $context.Values.mastodon.sidekiq.topologySpreadConstraints) .topologySpreadConstraints) }}
|
|
|
|
topologySpreadConstraints:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
2021-02-09 23:28:44 +00:00
|
|
|
volumes:
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- if (not $context.Values.mastodon.s3.enabled) }}
|
2021-02-09 23:28:44 +00:00
|
|
|
- name: assets
|
|
|
|
persistentVolumeClaim:
|
2024-06-01 00:42:03 +00:00
|
|
|
claimName: {{ template "mastodon.pvc.assets" $context }}
|
2021-02-09 23:28:44 +00:00
|
|
|
- name: system
|
|
|
|
persistentVolumeClaim:
|
2024-06-01 00:42:03 +00:00
|
|
|
claimName: {{ template "mastodon.pvc.system" $context }}
|
|
|
|
{{- end }}
|
|
|
|
{{- include "mastodon.statsdExporterVolume" $ | indent 8 }}
|
|
|
|
{{- if dig "customDatabaseConfigYml" "configMapRef" "name" false . }}
|
|
|
|
- name: config-database-yml
|
|
|
|
configMap:
|
|
|
|
name: {{ .customDatabaseConfigYml.configMapRef.name }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with $context.Values.volumes }}
|
|
|
|
{{- toYaml . | nindent 8 }}
|
2021-08-09 14:16:20 +00:00
|
|
|
{{- end }}
|
2021-02-09 23:28:44 +00:00
|
|
|
containers:
|
2023-04-08 19:26:41 +00:00
|
|
|
- name: {{ $context.Chart.Name }}
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- with $context.Values.mastodon.sidekiq.securityContext | default $context.Values.securityContext }}
|
2021-02-09 23:28:44 +00:00
|
|
|
securityContext:
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- toYaml . | nindent 12 }}
|
|
|
|
{{- end }}
|
|
|
|
image: "{{ coalesce (dig "image" "repository" false .) $context.Values.image.repository }}:{{ coalesce (dig "image" "tag" false .) $context.Values.image.tag $context.Chart.AppVersion }}"
|
2023-04-08 19:26:41 +00:00
|
|
|
imagePullPolicy: {{ $context.Values.image.pullPolicy }}
|
2021-02-09 23:28:44 +00:00
|
|
|
command:
|
|
|
|
- bundle
|
|
|
|
- exec
|
|
|
|
- sidekiq
|
|
|
|
- -c
|
2023-04-08 19:26:41 +00:00
|
|
|
- {{ .concurrency | quote }}
|
|
|
|
{{- range .queues }}
|
|
|
|
- -q
|
|
|
|
- {{ . | quote }}
|
|
|
|
{{- end }}
|
2021-02-09 23:28:44 +00:00
|
|
|
envFrom:
|
|
|
|
- configMapRef:
|
2023-04-08 19:26:41 +00:00
|
|
|
name: {{ include "mastodon.fullname" $context }}-env
|
2021-02-09 23:28:44 +00:00
|
|
|
- secretRef:
|
2023-04-08 19:26:41 +00:00
|
|
|
name: {{ template "mastodon.secretName" $context }}
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- if $context.Values.mastodon.extraEnvFrom }}
|
|
|
|
- configMapRef:
|
|
|
|
name: {{ $context.Values.mastodon.extraEnvFrom }}
|
|
|
|
{{- end}}
|
2021-02-09 23:28:44 +00:00
|
|
|
env:
|
|
|
|
- name: "DB_PASS"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
2023-04-08 19:26:41 +00:00
|
|
|
name: {{ template "mastodon.postgresql.secretName" $context }}
|
|
|
|
key: password
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- if $context.Values.postgresql.readReplica.auth.existingSecret }}
|
|
|
|
- name: "REPLICA_DB_PASS"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ $context.Values.postgresql.readReplica.auth.existingSecret }}
|
|
|
|
key: password
|
|
|
|
{{- end }}
|
2021-02-09 23:28:44 +00:00
|
|
|
- name: "REDIS_PASSWORD"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
2023-04-08 19:26:41 +00:00
|
|
|
name: {{ template "mastodon.redis.secretName" $context }}
|
2021-02-09 23:28:44 +00:00
|
|
|
key: redis-password
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- if and $context.Values.redis.sidekiq.enabled $context.Values.redis.sidekiq.auth.existingSecret }}
|
|
|
|
- name: "SIDEKIQ_REDIS_PASSWORD"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ template "mastodon.redis.sidekiq.secretName" $context }}
|
|
|
|
key: redis-password
|
|
|
|
{{- end }}
|
|
|
|
{{- if and $context.Values.redis.cache.enabled $context.Values.redis.cache.auth.existingSecret }}
|
|
|
|
- name: "CACHE_REDIS_PASSWORD"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ template "mastodon.redis.cache.secretName" $context }}
|
|
|
|
key: redis-password
|
|
|
|
{{- end }}
|
|
|
|
{{- if and $context.Values.elasticsearch.existingSecret (or $context.Values.elasticsearch.enabled $context.Values.elasticsearch.hostname) }}
|
|
|
|
- name: "ES_PASS"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ $context.Values.elasticsearch.existingSecret }}
|
|
|
|
key: password
|
|
|
|
{{- end }}
|
2023-04-08 19:26:41 +00:00
|
|
|
- name: "SMTP_LOGIN"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ include "mastodon.smtp.secretName" $context }}
|
|
|
|
key: login
|
|
|
|
optional: true
|
|
|
|
- name: "SMTP_PASSWORD"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ include "mastodon.smtp.secretName" $context }}
|
|
|
|
key: password
|
2024-06-01 00:42:03 +00:00
|
|
|
optional: true
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- if (and $context.Values.mastodon.s3.enabled $context.Values.mastodon.s3.existingSecret) }}
|
|
|
|
- name: "AWS_SECRET_ACCESS_KEY"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ $context.Values.mastodon.s3.existingSecret }}
|
|
|
|
key: AWS_SECRET_ACCESS_KEY
|
|
|
|
- name: "AWS_ACCESS_KEY_ID"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ $context.Values.mastodon.s3.existingSecret }}
|
|
|
|
key: AWS_ACCESS_KEY_ID
|
|
|
|
{{- end }}
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- if and $context.Values.mastodon.deepl.enabled }}
|
|
|
|
- name: "DEEPL_API_KEY"
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ $context.Values.mastodon.deepl.apiKeySecretRef.name }}
|
|
|
|
key: {{ $context.Values.mastodon.deepl.apiKeySecretRef.key }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if and $context.Values.mastodon.cacheBuster.enabled $context.Values.mastodon.cacheBuster.authToken.existingSecret }}
|
|
|
|
- name: CACHE_BUSTER_SECRET
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: {{ $context.Values.mastodon.cacheBuster.authToken.existingSecret }}
|
|
|
|
key: password
|
|
|
|
{{- end }}
|
2021-02-09 23:28:44 +00:00
|
|
|
volumeMounts:
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- if (not $context.Values.mastodon.s3.enabled) }}
|
2021-02-09 23:28:44 +00:00
|
|
|
- name: assets
|
|
|
|
mountPath: /opt/mastodon/public/assets
|
|
|
|
- name: system
|
|
|
|
mountPath: /opt/mastodon/public/system
|
2021-08-09 14:16:20 +00:00
|
|
|
{{- end }}
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- if dig "customDatabaseConfigYml" "configMapRef" "name" false . }}
|
|
|
|
- name: config-database-yml
|
|
|
|
mountPath: /opt/mastodon/config/database.yml
|
|
|
|
subPath: {{ .customDatabaseConfigYml.configMapRef.key }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with $context.Values.volumeMounts }}
|
|
|
|
{{- toYaml . | nindent 12 }}
|
|
|
|
{{- end }}
|
2021-02-09 23:28:44 +00:00
|
|
|
resources:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- toYaml (default (default $context.Values.resources $context.Values.mastodon.sidekiq.resources) .resources) | nindent 12 }}
|
2024-06-01 00:42:03 +00:00
|
|
|
{{- include "mastodon.statsdExporterContainer" $ | indent 8 }}
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- with $context.Values.nodeSelector }}
|
2021-02-09 23:28:44 +00:00
|
|
|
nodeSelector:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- with $context.Values.tolerations }}
|
2021-02-09 23:28:44 +00:00
|
|
|
tolerations:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
2023-04-08 19:26:41 +00:00
|
|
|
{{- end }}
|