From f0e5c4bc8902a91f0d125b3ce910d9f70d24a893 Mon Sep 17 00:00:00 2001 From: Pat Riehecky Date: Fri, 26 Dec 2025 11:27:50 -0600 Subject: [PATCH] chore(cloudnative-pg): use port names rather than numbers Signed-off-by: Pat Riehecky --- charts/cloudnative-pg/templates/deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/cloudnative-pg/templates/deployment.yaml b/charts/cloudnative-pg/templates/deployment.yaml index 760b37685a..c17e6a7493 100644 --- a/charts/cloudnative-pg/templates/deployment.yaml +++ b/charts/cloudnative-pg/templates/deployment.yaml @@ -101,7 +101,7 @@ spec: livenessProbe: httpGet: path: /readyz - port: {{ .Values.webhook.port }} + port: webhook-server scheme: HTTPS {{- if .Values.webhook.livenessProbe.initialDelaySeconds }} initialDelaySeconds: {{ .Values.webhook.livenessProbe.initialDelaySeconds }} @@ -117,7 +117,7 @@ spec: readinessProbe: httpGet: path: /readyz - port: {{ .Values.webhook.port }} + port: webhook-server scheme: HTTPS {{- if .Values.webhook.readinessProbe.initialDelaySeconds }} initialDelaySeconds: {{ .Values.webhook.readinessProbe.initialDelaySeconds }} @@ -132,7 +132,7 @@ spec: {{- end }} httpGet: path: /readyz - port: {{ .Values.webhook.port }} + port: webhook-server scheme: HTTPS {{- if .Values.webhook.startupProbe.periodSeconds }} periodSeconds: {{ .Values.webhook.startupProbe.periodSeconds }}