Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Aug 7, 2023
1 parent 058c70f commit 203aa03
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/humhub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# 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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.15
version: 0.1.16

# 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
Expand Down
1 change: 1 addition & 0 deletions charts/humhub/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Return the humhub-database Secret Name
{{- printf "%s-database" (include "humhub.fullname" .) -}}
{{- end -}}
{{- end -}}

{{/*
Return the humhub-database Secret Name
*/}}
Expand Down
2 changes: 1 addition & 1 deletion charts/humhub/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ spec:
valueFrom:
secretKeyRef:
name: {{ include "humhub.mailerSecretName" . }}
key: SMTP
key: password
- name: HUMHUB_MAILER_ENCRYPTION
value: {{ .Values.mailer.encryption | quote }}
- name: HUMHUB_MAILER_ALLOW_SELF_SIGNED_CERTS
Expand Down
2 changes: 1 addition & 1 deletion charts/humhub/templates/mailer-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ metadata:
name: {{ include "humhub.mailerSecretName" . }}
type: Opaque
data:
SMTP: {{.Values.mailer.password | b64enc | quote }}
password: {{.Values.mailer.password | b64enc | quote }}
{{- end }}

0 comments on commit 203aa03

Please sign in to comment.