Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* update FastAPI requirements
* update minimal python version to 3.6
* add `**render_params.kwargs` to pass custom render params in `image.render` method (https://github.com/developmentseed/titiler/pull/259)
* Changed probe url from `/ping` to `/healthz` in k8s deployment

**breaking change**

Expand Down
4 changes: 2 additions & 2 deletions deployment/k8s/titiler/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /ping
path: /healthz
port: http
readinessProbe:
httpGet:
path: /ping
path: /healthz
port: http
resources:
{{- toYaml .Values.resources | nindent 12 }}
Expand Down