We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5bcb0f commit a8ff424Copy full SHA for a8ff424
CHANGES.md
@@ -6,6 +6,7 @@
6
* update FastAPI requirements
7
* update minimal python version to 3.6
8
* 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
10
11
**breaking change**
12
deployment/k8s/titiler/templates/deployment.yaml
@@ -34,11 +34,11 @@ spec:
34
protocol: TCP
35
livenessProbe:
36
httpGet:
37
- path: /ping
+ path: /healthz
38
port: http
39
readinessProbe:
40
41
42
43
resources:
44
{{- toYaml .Values.resources | nindent 12 }}
0 commit comments