Merge pull request #5 from small-hack/quote-ports

always quote ports in secrets
This commit is contained in:
JesseBot 2025-09-28 13:10:54 +02:00 committed by GitHub
commit 81a700d4a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -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"

View file

@ -1,6 +1,6 @@
# ghost
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.0.10](https://img.shields.io/badge/AppVersion-6.0.10-informational?style=flat-square)
![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.0.10](https://img.shields.io/badge/AppVersion-6.0.10-informational?style=flat-square)
A Helm chart for deploying Ghost on Kubernetes

View file

@ -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 }}

View file

@ -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 }}