Skip to content

Commit

Permalink
don't set cert issuer on ingress to prevent replacement of a certificate
Browse files Browse the repository at this point in the history
  • Loading branch information
vbradnitski committed Nov 8, 2023
1 parent 268a52e commit 9fc8aa8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void syncIngress( final Domain domain, final Ingress ingress )
case DOMAIN_WILDCARD:
if ( cfgHasKey( "dns.lb.domain.wildcardCertificate" ) )
{
newAnnotations.put( "cert-manager.io/cluster-issuer", getClusterIssuer( domain ) );
// newAnnotations.put( "cert-manager.io/cluster-issuer", getClusterIssuer( domain ) );
newTLS.add( new IngressTLS( Arrays.asList( host ), cfgStr( "dns.lb.domain.wildcardCertificate" ) ) );
}
else
Expand Down

0 comments on commit 9fc8aa8

Please sign in to comment.