always quote ports

This commit is contained in:
JesseBot 2025-09-28 13:09:53 +02:00
parent 6f800c638d
commit 95e33de403
No known key found for this signature in database
4 changed files with 5 additions and 5 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
@ -94,4 +94,4 @@ A Helm chart for deploying Ghost on Kubernetes
| volumes | list | `[]` | Additional volumes on the output Deployment definition. |
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)

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