Skip to content
This repository was archived by the owner on Mar 5, 2026. It is now read-only.

Commit 3f289b5

Browse files
committed
add logging level configuration to to ghost itself
1 parent 8c7d246 commit 3f289b5

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

charts/ghost/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
2424
appVersion: "6.0.10"

charts/ghost/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
A 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 "" |

charts/ghost/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ spec:
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

charts/ghost/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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 ""

0 commit comments

Comments
 (0)