Skip to content

Commit 13fdff2

Browse files
authored
Fix health probes for discourse container in [bitnami/discourse] (#6676)
1 parent 16598fa commit 13fdff2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bitnami/discourse/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ sources:
3535
- https://github.com/bitnami/bitnami-docker-discourse
3636
- https://github.com/spinnaker
3737
- https://www.discourse.org/
38-
version: 4.1.2
38+
version: 4.1.3

bitnami/discourse/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ spec:
137137
{{- if .Values.discourse.livenessProbe.enabled }}
138138
livenessProbe:
139139
httpGet:
140-
path: /
140+
path: /srv/status
141141
port: http
142142
initialDelaySeconds: {{ .Values.discourse.livenessProbe.initialDelaySeconds }}
143143
periodSeconds: {{ .Values.discourse.livenessProbe.periodSeconds }}
@@ -150,7 +150,7 @@ spec:
150150
{{- if .Values.discourse.readinessProbe.enabled }}
151151
readinessProbe:
152152
httpGet:
153-
path: /
153+
path: /srv/status
154154
port: http
155155
initialDelaySeconds: {{ .Values.discourse.readinessProbe.initialDelaySeconds }}
156156
periodSeconds: {{ .Values.discourse.readinessProbe.periodSeconds }}

0 commit comments

Comments
 (0)