Skip to content

Commit a8ff424

Browse files
[k8s] Changed probe url from ping to healthz (#265)
* ping to healthz for probes * updated CHANGES
1 parent b5bcb0f commit a8ff424

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* update FastAPI requirements
77
* update minimal python version to 3.6
88
* add `**render_params.kwargs` to pass custom render params in `image.render` method (https://github.com/developmentseed/titiler/pull/259)
9+
* Changed probe url from `/ping` to `/healthz` in k8s deployment
910

1011
**breaking change**
1112

deployment/k8s/titiler/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ spec:
3434
protocol: TCP
3535
livenessProbe:
3636
httpGet:
37-
path: /ping
37+
path: /healthz
3838
port: http
3939
readinessProbe:
4040
httpGet:
41-
path: /ping
41+
path: /healthz
4242
port: http
4343
resources:
4444
{{- toYaml .Values.resources | nindent 12 }}

0 commit comments

Comments
 (0)