From 6a7f5ef04b312d21d0c31cd99e0fa477c336513a Mon Sep 17 00:00:00 2001 From: Mikhail Klimko Date: Thu, 12 Dec 2024 08:59:23 +0300 Subject: [PATCH] fix: tls secret for app-proxy ingress --- charts/cf-runtime/Chart.yaml | 6 +++--- .../templates/_components/app-proxy/_ingress.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/cf-runtime/Chart.yaml b/charts/cf-runtime/Chart.yaml index c15f634e..4ec73858 100644 --- a/charts/cf-runtime/Chart.yaml +++ b/charts/cf-runtime/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 description: A Helm chart for Codefresh Runner name: cf-runtime -version: 7.3.0 +version: 7.3.1 keywords: - codefresh - runner @@ -17,8 +17,8 @@ annotations: artifacthub.io/containsSecurityUpdates: "false" # Supported kinds: `added`, `changed`, `deprecated`, `removed`, `fixed`, `security`: artifacthub.io/changes: | - - kind: changed - description: "Upgraded `venona` with improved resource cleanup after build finish" + - kind: fixed + description: "Fix TLS secret in ingress template for app-proxy" dependencies: - name: cf-common repository: oci://quay.io/codefresh/charts diff --git a/charts/cf-runtime/templates/_components/app-proxy/_ingress.yaml b/charts/cf-runtime/templates/_components/app-proxy/_ingress.yaml index d7860b36..4a4b5c15 100644 --- a/charts/cf-runtime/templates/_components/app-proxy/_ingress.yaml +++ b/charts/cf-runtime/templates/_components/app-proxy/_ingress.yaml @@ -16,7 +16,7 @@ spec: tls: - hosts: - {{ .Values.ingress.host }} - secretName: {{ .Values.tlsSecret }} + secretName: {{ .Values.ingress.tlsSecret }} {{- end }} rules: - host: {{ .Values.ingress.host }}