mirror of
https://github.com/mastodon/chart
synced 2025-04-27 18:53:40 +00:00
Fix redis secret from values not being used in db-prepare (#189)
This commit is contained in:
parent
86cd73a766
commit
4fc46b53b8
|
@ -1,3 +1,7 @@
|
||||||
|
# 6.2.4
|
||||||
|
|
||||||
|
- Fixed an issue where redis secrets specified in values or the helm CLI wouldn't be used by the db-prepare job on install.
|
||||||
|
|
||||||
# 6.2.3
|
# 6.2.3
|
||||||
|
|
||||||
- Updated the Mastodon version to v4.3.7
|
- Updated the Mastodon version to v4.3.7
|
||||||
|
|
|
@ -15,7 +15,7 @@ type: application
|
||||||
# This is the chart version. This version number should be incremented each time
|
# This is the chart version. This version number should be incremented each time
|
||||||
# you make changes to the chart and its templates, including the app version.
|
# you make changes to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 6.2.3
|
version: 6.2.4
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
|
|
|
@ -102,7 +102,11 @@ spec:
|
||||||
- name: "REDIS_PASSWORD"
|
- name: "REDIS_PASSWORD"
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
{{- if and (.prepare) (not .Values.redis.enabled) (not .Values.redis.auth.existingSecret) (not .Values.redis.existingSecret) (.Values.redis.auth.password) }}
|
||||||
|
name: {{ template "mastodon.redis.secretName" . }}-pre-install
|
||||||
|
{{- else }}
|
||||||
name: {{ template "mastodon.redis.secretName" . }}
|
name: {{ template "mastodon.redis.secretName" . }}
|
||||||
|
{{- end }}
|
||||||
key: redis-password
|
key: redis-password
|
||||||
{{- if .preDeploy }}
|
{{- if .preDeploy }}
|
||||||
- name: "SKIP_POST_DEPLOYMENT_MIGRATIONS"
|
- name: "SKIP_POST_DEPLOYMENT_MIGRATIONS"
|
||||||
|
|
19
templates/secret-redis-preinstall.yaml
Normal file
19
templates/secret-redis-preinstall.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{{- if not .Values.redis.enabled }}
|
||||||
|
{{- if and (not .Values.redis.auth.existingSecret) (not .Values.redis.existingSecret) }}
|
||||||
|
{{- if .Values.redis.auth.password }}
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: {{ include "mastodon.redis.secretName" . }}-pre-install
|
||||||
|
labels:
|
||||||
|
{{- include "mastodon.labels" . | nindent 4 }}
|
||||||
|
annotations:
|
||||||
|
helm.sh/hook: pre-install
|
||||||
|
helm.sh/hook-weight: "-5"
|
||||||
|
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
|
||||||
|
type: Opaque
|
||||||
|
data:
|
||||||
|
redis-password: "{{ .Values.redis.auth.password | b64enc }}"
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
Loading…
Reference in New Issue
Block a user