From 4323100cccf24c6060fe1ff2d9f5d635dc7c4e3f Mon Sep 17 00:00:00 2001 From: "lukasz.widera@vshn.ch" Date: Tue, 29 Oct 2024 10:23:39 +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 fd200c0c0..8248293ce 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",