File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -33,4 +33,4 @@ name: ghost
3333sources :
3434 - https://github.com/bitnami/bitnami-docker-ghost
3535 - http://www.ghost.org/
36- version : 14.0.6
36+ version : 14.0.7
Original file line number Diff line number Diff line change @@ -193,7 +193,8 @@ spec:
193193 livenessProbe :
194194 httpGet :
195195 path : /
196- port : http
196+ port : {{ ternary "https" "http" .Values.ghostEnableHttps | quote }}
197+ scheme : {{ ternary "HTTPS" "HTTP" .Values.ghostEnableHttps | quote }}
197198 initialDelaySeconds : {{ .Values.livenessProbe.initialDelaySeconds }}
198199 periodSeconds : {{ .Values.livenessProbe.periodSeconds }}
199200 timeoutSeconds : {{ .Values.livenessProbe.timeoutSeconds }}
@@ -206,7 +207,8 @@ spec:
206207 readinessProbe :
207208 httpGet :
208209 path : /
209- port : http
210+ port : {{ ternary "https" "http" .Values.ghostEnableHttps | quote }}
211+ scheme : {{ ternary "HTTPS" "HTTP" .Values.ghostEnableHttps | quote }}
210212 initialDelaySeconds : {{ .Values.readinessProbe.initialDelaySeconds }}
211213 periodSeconds : {{ .Values.readinessProbe.periodSeconds }}
212214 timeoutSeconds : {{ .Values.readinessProbe.timeoutSeconds }}
You can’t perform that action at this time.
0 commit comments