Merge pull request #5 from small-hack/quote-ports
always quote ports in secrets
This commit is contained in:
commit
81a700d4a7
4 changed files with 4 additions and 4 deletions
|
@ -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: 1.0.0
|
||||
version: 1.0.1
|
||||
|
||||
# renovate: image=docker.io/ghost
|
||||
appVersion: "6.0.10"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# ghost
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A Helm chart for deploying Ghost on Kubernetes
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ metadata:
|
|||
{{- include "ghost.labels" . | nindent 4 }}
|
||||
data:
|
||||
database__connection__host: {{ .Values.externalDatabase.host | b64enc }}
|
||||
database__connection__port: {{ .Values.externalDatabase.port | b64enc }}
|
||||
database__connection__port: {{ .Values.externalDatabase.port| quote | b64enc }}
|
||||
database__connection__database: {{ .Values.externalDatabase.database | b64enc }}
|
||||
database__connection__user: {{ .Values.externalDatabase.username | b64enc }}
|
||||
database__connection__password: {{ .Values.externalDatabase.password | b64enc }}
|
||||
|
|
|
@ -8,7 +8,7 @@ metadata:
|
|||
{{- include "ghost.labels" . | nindent 4 }}
|
||||
data:
|
||||
mail__options__host: {{ .Values.ghost.smtp.host | b64enc }}
|
||||
mail__options__port: {{ .Values.ghost.smtp.port | b64enc }}
|
||||
mail__options__port: {{ .Values.ghost.smtp.port | quote | b64enc }}
|
||||
mail__options__auth__user: {{ .Values.ghost.smtp.username | b64enc }}
|
||||
mail__options__auth__pass: {{ .Values.ghost.smtp.password | b64enc }}
|
||||
mail__transport: {{ .Values.ghost.smtp.protocol | b64enc }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue