From eca5ae1d9aa448e136fa977539c48524d7018b87 Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Wed, 25 Sep 2024 17:48:40 -0400 Subject: [PATCH] Fix custom Issuer name in Semeru Cloud Compiler (#627) --- internal/controller/semeru_compiler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/controller/semeru_compiler.go b/internal/controller/semeru_compiler.go index 9d01b3604..e73ef0cda 100644 --- a/internal/controller/semeru_compiler.go +++ b/internal/controller/semeru_compiler.go @@ -441,7 +441,7 @@ func (r *ReconcileOpenLiberty) reconcileSemeruCMCertificate(ola *openlibertyv1.O svcCert.Name = getSemeruCompilerNameWithGeneration(ola) svcCert.Namespace = ola.GetNamespace() customIssuer := &certmanagerv1.Issuer{ObjectMeta: metav1.ObjectMeta{ - Name: "olo-" + "-custom-issuer", + Name: OperatorShortName + "-custom-issuer", Namespace: svcCert.Namespace, }}