This repository was archived by the owner on Mar 5, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ type: application
1818# This is the chart version. This version number should be incremented each time you make changes
1919# to the chart and its templates, including the app version.
2020# Versions are expected to follow Semantic Versioning (https://semver.org/)
21- version : 2.0.1
21+ version : 2.0.2
2222
2323# renovate: image=docker.io/ghost
2424appVersion : " 6.0.10"
Original file line number Diff line number Diff line change 11# ghost
22
3- ![ Version: 2.0.1 ] ( https://img.shields.io/badge/Version-2.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 )
3+ ![ Version: 2.0.2 ] ( https://img.shields.io/badge/Version-2.0.2 -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 )
44
55A Helm chart for deploying Ghost on Kubernetes
66
@@ -74,6 +74,7 @@ A Helm chart for deploying Ghost on Kubernetes
7474| ghost.blog_title | string | ` "" ` | title of your ghost blog |
7575| ghost.domain | string | ` "" ` | domain of the ghost blog (must NOT include http:// or https://) e.g. blog.example.com |
7676| ghost.enable_https | bool | ` false ` | enable HTTPS for the ghost blog |
77+ | ghost.logging_level | string | ` "info" ` | default logging level for the ghost container |
7778| ghost.skip_bootstrap | bool | ` false ` | skip install of ghost at pod restart |
7879| ghost.smtp.existingSecret | string | ` "" ` | existing kubernetes secret with ghost smtp credentials |
7980| ghost.smtp.from_address | string | ` "" ` | smtp from address. ignored if existingSecret not "" |
Original file line number Diff line number Diff line change 6464 - name : ADMIN_DOMAIN
6565 value : {{ .Values.ghost.admin_domain }}
6666
67+ - name : logging__level
68+ value : {{ .Values.ghost.logging_level }}
69+
6770 - name : database__client
6871 value : mysql
6972
Original file line number Diff line number Diff line change @@ -214,6 +214,9 @@ ghost:
214214 # -- skip install of ghost at pod restart
215215 skip_bootstrap : false
216216
217+ # -- default logging level for the ghost container
218+ logging_level : info
219+
217220 # admin user info
218221 admin :
219222 # -- admin username. ignored if existingSecret not ""
You can’t perform that action at this time.
0 commit comments