Skip to content

Commit

Permalink
Fix custom Issuer name in Semeru Cloud Compiler (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
kabicin authored Sep 25, 2024
1 parent becf646 commit eca5ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/semeru_compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}}

Expand Down

0 comments on commit eca5ae1

Please sign in to comment.