From 17f97d96d9b90821a0bd4cc3e761202e50163a10 Mon Sep 17 00:00:00 2001 From: "lukasz.widera@vshn.ch" Date: Tue, 29 Oct 2024 10:24:53 +0100 Subject: [PATCH] updating mariadb tls setting --- pkg/comp-functions/functions/vshnmariadb/mariadb_deploy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/comp-functions/functions/vshnmariadb/mariadb_deploy.go b/pkg/comp-functions/functions/vshnmariadb/mariadb_deploy.go index fd200c0c0b..8248293cee 100644 --- a/pkg/comp-functions/functions/vshnmariadb/mariadb_deploy.go +++ b/pkg/comp-functions/functions/vshnmariadb/mariadb_deploy.go @@ -176,7 +176,7 @@ func newValues(ctx context.Context, svc *runtime.ServiceRuntime, comp *vshnv1.VS "enabled": false, }, "tls": map[string]interface{}{ - "enabled": true, + "enabled": comp.Spec.Parameters.TLS.TLSEnabled, "certificatesSecret": "tls-server-certificate", "certFilename": "tls.crt", "certKeyFilename": "tls.key",