File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ type: application
99# This is the chart version. This version number should be incremented each time you make changes
1010# to the chart and its templates, including the app version.
1111# Versions are expected to follow Semantic Versioning (https://semver.org/)
12- version : 11.0.1
12+ version : 11.0.2
1313
1414# renovate: image=ghcr.io/mastodon/mastodon
1515appVersion : v4.4.4
Original file line number Diff line number Diff line change 3939 { {- end } }
4040 spec:
4141 restartPolicy: Never
42+ { {- if .Values.mastodon.extraVolumes } }
43+ volumes:
44+ { {- if gt (len .Values.mastodon.extraVolumes) 0 } }
45+ { { toYaml .Values.mastodon.extraVolumes | nindent 8} }
46+ { {- end } }
47+ { {- end } }
4248 containers:
4349 - name: { { include " mastodon.fullname" . } }-db-migrate
4450 image: "{ { .Values.image.repository } }:{ { .Values.image.tag | default .Chart.AppVersion } }"
5258 { {- else } }
5359 - db:migrate
5460 { {- end } }
61+ { {- if .Values.mastodon.extraVolumeMounts } }
62+ volumeMounts:
63+ { {- if gt (len .Values.mastodon.extraVolumeMounts) 0 } }
64+ { {- toYaml .Values.mastodon.extraVolumeMounts | nindent 12 } }
65+ { {- end } }
66+ { {- end } }
5567 envFrom:
5668 - configMapRef:
5769 name: { { include " mastodon.fullname" . } }-env
You can’t perform that action at this time.
0 commit comments