diff --git a/stable/ghost/templates/deployment.yaml b/stable/ghost/templates/deployment.yaml index 02d0d81fed..affaaf6f5a 100644 --- a/stable/ghost/templates/deployment.yaml +++ b/stable/ghost/templates/deployment.yaml @@ -66,18 +66,24 @@ spec: containerPort: 2368 livenessProbe: httpGet: - path: / + path: /ghost port: http + httpHeaders: + - name: Host + value: {{ include "host" . | quote }} initialDelaySeconds: 120 timeoutSeconds: 5 + failureThreshold: 6 readinessProbe: - exec: - command: - - sh - - -c - - nami status ghost | grep "ghost is running" - initialDelaySeconds: 5 - timeoutSeconds: 1 + httpGet: + path: /ghost + port: http + httpHeaders: + - name: Host + value: {{ include "host" . | quote }} + initialDelaySeconds: 30 + timeoutSeconds: 3 + periodSeconds: 5 resources: {{ toYaml .Values.resources | indent 10 }} volumeMounts: diff --git a/stable/ghost/values.yaml b/stable/ghost/values.yaml index ed0612d079..eebacdd15c 100644 --- a/stable/ghost/values.yaml +++ b/stable/ghost/values.yaml @@ -1,7 +1,7 @@ ## Bitnami Ghost image version ## ref: https://hub.docker.com/r/bitnami/ghost/tags/ ## -image: bitnami/ghost:0.11.8-r1 +image: bitnami/ghost:0.11.9-r0 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'