From 4307424f917c7ca902f1d352001baba64fb4b2a2 Mon Sep 17 00:00:00 2001 From: Veronika Fisarova Date: Fri, 6 Oct 2023 13:53:53 +0200 Subject: [PATCH] Add temporary debug prints Signed-off-by: Veronika Fisarova --- modules/common/tls/tls.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/common/tls/tls.go b/modules/common/tls/tls.go index d4adc3e0..bc076e79 100644 --- a/modules/common/tls/tls.go +++ b/modules/common/tls/tls.go @@ -145,10 +145,10 @@ func (t *TLS) AddTLSToDeployment(d *deployment.Deployment) { fmt.Println("CA SecretName:", t.Ca.CaSecretName) tlsVolumes := t.CreateVolumes() - fmt.Println("Generated TLS Volumes:", tlsVolumes) + fmt.Println("Generated TLS Volumes:", tlsVolumes) //Debug tlsVolumeMounts := t.CreateVolumeMounts() - fmt.Println("Generated TLS VolumeMounts:", tlsVolumeMounts) + fmt.Println("Generated TLS VolumeMounts:", tlsVolumeMounts) //Debug currentDeployment := d.GetDeployment() currentDeployment.Spec.Template.Spec.Volumes = append(currentDeployment.Spec.Template.Spec.Volumes, tlsVolumes...)