From 5315b030f17725a8af437965efadda01f77bb75f Mon Sep 17 00:00:00 2001 From: Daniel Caires Date: Mon, 16 Feb 2026 14:31:16 -0300 Subject: [PATCH] Fix Cinder secret ingress TLS In the cinder Helm-chart the secret-ingress-tls template was pointing to a backendServiceType that no longer existed. A recent review [1] changed the key in secrets.tls from "volume" to "volumev3". This review changes the value of backendServiceType to match the same change mentioned above. [1] - https://review.opendev.org/c/openstack/openstack-helm/+/935896 Change-Id: I76a616214db13f7611eac609d1a7b4f8ac258181 Signed-off-by: Daniel Caires --- cinder/templates/secret-ingress-tls.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/templates/secret-ingress-tls.yaml b/cinder/templates/secret-ingress-tls.yaml index 6a185b29c4..f298d67bff 100644 --- a/cinder/templates/secret-ingress-tls.yaml +++ b/cinder/templates/secret-ingress-tls.yaml @@ -13,5 +13,5 @@ limitations under the License. */}} {{- if .Values.manifests.secret_ingress_tls }} -{{- include "helm-toolkit.manifests.secret_ingress_tls" ( dict "envAll" . "backendServiceType" "volume" ) }} +{{- include "helm-toolkit.manifests.secret_ingress_tls" ( dict "envAll" . "backendServiceType" "volumev3" ) }} {{- end }}