Skip to content
Snippets Groups Projects
Verified Commit fff6b842 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct issues with mastodon chart

parent 93e53e52
No related branches found
No related tags found
No related merge requests found
Pipeline #2979 passed
......@@ -2,5 +2,5 @@ apiVersion: v2
name: mastodon
description: Helm Chart for mastodon
type: application
version: 0.3.2
version: 0.4.0
appVersion: "v4.0"
......@@ -48,6 +48,7 @@ spec:
name: websocket
protocol: TCP
startupProbe:
failureThreshold: 15
httpGet:
port: websocket
path: /api/v1/streaming/health
......
apiVersion: v1
kind: Pod
metadata:
name: {{ include "mastodon-helm.fullname" . }}-tootctl
labels:
component: tootctl
{{- include "mastodon-helm.labels" . | nindent 4 }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 4 }}
{{- end }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 4 }}
volumes:
- name: data
{{- .Values.volumes.data | nindent 6 }}
- name: tmp
emptyDir:
medium: Memory
containers:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 8 }}
image: "{{ .Values.web.repository }}:{{ .Values.web.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.web.pullPolicy }}
command:
- "/bin/sh"
- "-c"
- "while true; do sleep 60; done"
envFrom:
- secretRef:
name: {{ include "mastodon-helm.fullname" . }}
volumeMounts:
- mountPath: "/mastodon/public/system"
name: data
- mountPath: "/opt/mastodon/tmp"
name: tmp
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 4 }}
{{- end }}
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: {{ include "mastodon-helm.fullname" . }}-tootctl
labels:
component: tootctl
{{- include "mastodon-helm.labels" . | nindent 4 }}
spec:
selector:
matchLabels:
component: tootctl
{{- include "mastodon-helm.labels" . | nindent 6 }}
template:
metadata:
name: {{ include "mastodon-helm.fullname" . }}-tootctl
labels:
component: tootctl
{{- include "mastodon-helm.labels" . | nindent 8 }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
- name: data
{{- .Values.volumes.data | nindent 10 }}
- name: tmp
emptyDir:
medium: Memory
containers:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.web.repository }}:{{ .Values.web.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.web.pullPolicy }}
command:
- "/bin/sh"
- "-c"
- "while true; do sleep 60; done"
envFrom:
- secretRef:
name: {{ include "mastodon-helm.fullname" . }}
volumeMounts:
- mountPath: "/mastodon/public/system"
name: data
- mountPath: "/opt/mastodon/tmp"
name: tmp
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment