mirror of
https://github.com/bitnami/charts.git
synced 2026-03-08 00:37:41 +08:00
[bitnami/nginx] Fix readiness probe (#26394)
This commit is contained in:
committed by
GitHub
parent
56c8c6a2c9
commit
0722a57fe1
@@ -1,8 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 17.2.1 (2024-05-24)
|
||||
|
||||
* [bitnami/nginx] Fix readiness probe ([#26394](https://github.com/bitnami/charts/pull/26394))
|
||||
|
||||
## 17.2.0 (2024-05-23)
|
||||
|
||||
* [bitnami/nginx] Allow custom path for readinessProbe and update startupProbe ([#26362](https://github.com/bitnami/charts/pull/26362))
|
||||
* [bitnami/nginx] Allow custom path for readinessProbe and update startupProbe (#26362) ([24fcc5a](https://github.com/bitnami/charts/commit/24fcc5a3e6872c599d6eafdf6df531dde7272a32)), closes [#26362](https://github.com/bitnami/charts/issues/26362)
|
||||
|
||||
## 17.1.0 (2024-05-21)
|
||||
|
||||
|
||||
@@ -34,4 +34,4 @@ maintainers:
|
||||
name: nginx
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/nginx
|
||||
version: 17.2.0
|
||||
version: 17.2.1
|
||||
|
||||
@@ -269,7 +269,7 @@ spec:
|
||||
{{- if .Values.customReadinessProbe }}
|
||||
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customReadinessProbe "context" $) | nindent 12 }}
|
||||
{{- else if .Values.readinessProbe.enabled }}
|
||||
readinessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.readinessProbe "enabled") "context" $) | nindent 12 }}
|
||||
readinessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.readinessProbe "enabled" "path") "context" $) | nindent 12 }}
|
||||
httpGet:
|
||||
path: {{ .Values.readinessProbe.path }}
|
||||
port: {{ ternary "https" "http" (and (empty .Values.containerPorts.http) (not (empty .Values.containerPorts.https))) }}
|
||||
|
||||
Reference in New Issue
Block a user