Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 6e56c0e

Browse files
authored
[TT-10732] Fixed edp probes (#296)
* Fix probes path * Update edp version * Update edp version * Update changelog
1 parent c04dc2a commit 6e56c0e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
**Updated**
77
- Make bootstrap job image and tag configurable
8+
- Fixed enterprise portal probes
89
- Update components version to latest
910

1011
## [v0.14.1](https://github.com/TykTechnologies/tyk-helm-chart/tree/v0.14.1)

tyk-pro/templates/statefulset-enterprise-portal.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ spec:
152152
livenessProbe:
153153
httpGet:
154154
scheme: "HTTP{{ if .Values.enterprisePortal.tls }}S{{ end }}"
155-
path: /
155+
path: /live
156156
port: {{ .Values.enterprisePortal.containerPort }}
157157
initialDelaySeconds: {{ default 60 .Values.enterprisePortal.livenessProbe.initialDelaySeconds}}
158158
periodSeconds: 2
@@ -161,7 +161,7 @@ spec:
161161
readinessProbe:
162162
httpGet:
163163
scheme: "HTTP{{ if .Values.enterprisePortal.tls }}S{{ end }}"
164-
path: /
164+
path: /ready
165165
port: {{ .Values.enterprisePortal.containerPort }}
166166
initialDelaySeconds: {{ default 60 .Values.enterprisePortal.readinessProbe.initialDelaySeconds}}
167167
periodSeconds: 10

0 commit comments

Comments
 (0)