From ed683799727fac011fca4277cbe9d060b2251889 Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Sat, 17 May 2025 12:13:44 +0200 Subject: [PATCH] [kubernetes] fix regression: return port specification (#956) This PR fixes regression from https://github.com/cozystack/cozystack/pull/867 We have updated Kamaji, removed workaround, but didn't return the port specification Signed-off-by: Andrei Kvapil ## Summary by CodeRabbit - **Refactor** - Updated network configuration to explicitly include port 443 in hostnames for ingress. (cherry picked from commit fb26e3e9b7b22d52d99c2ad67d4fc776d7d9827d) Signed-off-by: Timofei Larkin --- packages/apps/kubernetes/templates/cluster.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/apps/kubernetes/templates/cluster.yaml b/packages/apps/kubernetes/templates/cluster.yaml index 1b2f395c..9aa16816 100644 --- a/packages/apps/kubernetes/templates/cluster.yaml +++ b/packages/apps/kubernetes/templates/cluster.yaml @@ -150,7 +150,7 @@ spec: ingress: extraAnnotations: nginx.ingress.kubernetes.io/ssl-passthrough: "true" - hostname: {{ .Values.host | default (printf "%s.%s" .Release.Name $host) }} + hostname: {{ .Values.host | default (printf "%s.%s" .Release.Name $host) }}:443 className: "{{ $ingress }}" deployment: podAdditionalMetadata: