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

Commit 8e94681

Browse files
committed
disable liveness, readiness probes and proxy by default
1 parent e853423 commit 8e94681

3 files changed

Lines changed: 18 additions & 18 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: 1.12.0
21+
version: 2.0.0
2222

2323
# renovate: image=docker.io/ghost
2424
appVersion: "6.0.10"

charts/ghost/README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ghost
22

3-
![Version: 1.11.2](https://img.shields.io/badge/Version-1.11.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)
3+
![Version: 2.0.0](https://img.shields.io/badge/Version-2.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)
44

55
A Helm chart for deploying Ghost on Kubernetes
66

@@ -100,8 +100,7 @@ A Helm chart for deploying Ghost on Kubernetes
100100
| ingress.hosts[0].paths[0].path | string | `"/"` | |
101101
| ingress.hosts[0].paths[0].pathType | string | `"Path"` | |
102102
| ingress.tls | list | `[]` | |
103-
| livenessProbe.httpGet.path | string | `"/"` | |
104-
| livenessProbe.httpGet.port | string | `"http"` | |
103+
| livenessProbe | object | `{}` | to setup the liveness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ |
105104
| nameOverride | string | `""` | This is to override the chart name. |
106105
| nodeSelector | object | `{}` | node selector |
107106
| persistence.accessModes | list | `[]` | accessModes for the PVC (ignored if persistence.existingClaim is set) |
@@ -111,10 +110,9 @@ A Helm chart for deploying Ghost on Kubernetes
111110
| podLabels | object | `{}` | This is for setting Kubernetes Labels to a Pod. For more info checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ |
112111
| podSecurityContext | object | `{}` | Configure Pods Security Context ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod |
113112
| proxy.config | string | `"user nginx;\nworker_processes 1;\nevents {\n worker_connections 10240;\n}\nhttp {\n server {\n listen 80;\n server_name 0.0.0.0;\n location / {\n root /usr/share/nginx/html; #Change this line\n index index.html index.htm;\n }\n }\n}"` | config to be mounted into the nginx container |
114-
| proxy.enabled | bool | `true` | enable/disable the embedded proxy |
113+
| proxy.enabled | bool | `false` | enable/disable the embedded proxy |
115114
| proxy.service.port | int | `80` | port exposed by proxy service |
116-
| readinessProbe.httpGet.path | string | `"/"` | |
117-
| readinessProbe.httpGet.port | string | `"http"` | |
115+
| readinessProbe | object | `{}` | to setup the readinessProbe more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ |
118116
| replicaCount | int | `1` | This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ |
119117
| resources | object | `{}` | pod resources: requested cpu/mem and limits for cpu/mem |
120118
| securityContext | object | `{}` | |
@@ -130,4 +128,4 @@ A Helm chart for deploying Ghost on Kubernetes
130128
| volumes | list | `[]` | Additional volumes on the output Deployment definition. |
131129

132130
----------------------------------------------
133-
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)
131+
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)

charts/ghost/values.yaml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -101,17 +101,19 @@ resources: {}
101101
# cpu: 100m
102102
# memory: 128Mi
103103

104-
# This is to setup the liveness and readiness probes more information can be found here:
104+
# -- to setup the liveness probes more information can be found here:
105105
# https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
106-
livenessProbe:
107-
httpGet:
108-
path: /
109-
port: http
106+
livenessProbe: {}
107+
# httpGet:
108+
# path: /
109+
# port: http
110110

111-
readinessProbe:
112-
httpGet:
113-
path: /
114-
port: http
111+
# -- to setup the readinessProbe more information can be found here:
112+
# https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
113+
readinessProbe: {}
114+
# httpGet:
115+
# path: /
116+
# port: http
115117

116118
# This section is for setting up autoscaling more information can be found here:
117119
# https://kubernetes.io/docs/concepts/workloads/autoscaling/
@@ -357,7 +359,7 @@ activity_pub:
357359
# Options for embedded nginx reverse-proxy
358360
proxy:
359361
# -- enable/disable the embedded proxy
360-
enabled: true
362+
enabled: false
361363

362364
service:
363365
# -- port exposed by proxy service

0 commit comments

Comments
 (0)