Fix configmap and secret generation

This commit is contained in:
Alexander Olofsson 2019-05-20 12:54:07 +02:00
parent 0c0fcd41f0
commit 8de88b4368
No known key found for this signature in database
GPG key ID: D439C9470CB04C73
2 changed files with 10 additions and 10 deletions

View file

@ -23,21 +23,21 @@ data:
DJANGO_ALLOWED_HOSTS: '*'
{{- if .Values.s3.enabled -}}
{{- if .Values.s3.enabled }}
AWS_ACCESS_KEY_ID: {{ .Values.s3.accessKey }}
AWS_SECRET_ACCESS_KEY: {{ .Values.s3.secretKey }}
AWS_STORAGE_BUCKET_NAME: {{ .Values.s3.bucket }}
{{- if .Values.s3.region -}}
{{- if .Values.s3.region }}
AWS_S3_REGION_NAME: {{ .Values.s3.region }}
{{- end -}}
{{- if .Values.s3.location -}}
{{- end }}
{{- if .Values.s3.location }}
AWS_LOCATION: {{ .Values.s3.location }}
{{- end -}}
{{- if .Values.s3.url -}}
{{- end }}
{{- if .Values.s3.url }}
AWS_S3_ENDPOINT_URL: {{ .Values.s3.url }}
{{- end -}}
{{- end }}
PROXY_MEDIA: {{ .Values.s3.proxy | quote }}
{{- end -}}
{{- end }}
{{- with .Values.extraEnv -}}
{{- toYaml . | nindent 2 }}

View file

@ -12,6 +12,6 @@ data:
DATABASE_URL: {{ include "funkwhale.dbUrl" . | b64enc }}
DJANGO_SECRET_KEY: {{ .Values.djangoSecret | b64enc }}
{{- range $key, $val := .Values.extraSecret -}}
{{- range $key, $val := .Values.extraSecret }}
{{ $key }}: {{ $val | b64enc }}
{{- end -}}
{{- end }}