Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bitnami/kong] Use different liveness/readiness probes #26132

Merged
merged 1 commit into from
May 21, 2024
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
6 changes: 3 additions & 3 deletions bitnami/kong/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
dependencies:
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 15.3.2
version: 15.3.3
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.19.2
- name: cassandra
repository: oci://registry-1.docker.io/bitnamicharts
version: 11.1.7
digest: sha256:f98529d6a63510ae5eaf83a71ea86ebeb0508cfceacd08b25892541a935aacc7
generated: "2024-05-18T01:28:32.048250206Z"
digest: sha256:28ff2d97d4dcece708875a10f9ed3e3e32498f1fab34a2cef43f101861b55fbd
generated: "2024-05-20T17:38:55.69796+02:00"
2 changes: 1 addition & 1 deletion bitnami/kong/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ maintainers:
name: kong
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/kong
version: 12.0.11
version: 12.0.12
10 changes: 4 additions & 6 deletions bitnami/kong/templates/dep-ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.kong.livenessProbe "enabled") "context" $) | nindent 12 }}
exec:
command:
- /bin/bash
- -ec
- /health/kong-container-health.sh
- pgrep
- -f
- 'kong start'
{{- end }}
{{- if .Values.kong.customReadinessProbe }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.kong.customReadinessProbe "context" $) | nindent 12 }}
Expand Down Expand Up @@ -336,10 +336,8 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.ingressController.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.ingressController.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.ingressController.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: "/healthz"
tcpSocket:
port: http-health
scheme: HTTP
{{- end }}
{{- if .Values.ingressController.customReadinessProbe }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.ingressController.customReadinessProbe "context" $) | nindent 12 }}
Expand Down
Loading