File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,9 @@ type CertificateRequestObject interface {
5555// IgnoreIssuer is an optional function that can prevent the issuer controllers from
5656// reconciling an issuer resource. By default, the controllers will reconcile all
5757// issuer resources that match the owned types.
58+ // This function will be called by the issuer reconcile loops for each type that matches
59+ // the owned types. If the function returns true, the controller will not reconcile the
60+ // issuer resource.
5861type IgnoreIssuer func (
5962 ctx context.Context ,
6063 issuerObject v1alpha1.Issuer ,
@@ -63,6 +66,9 @@ type IgnoreIssuer func(
6366// IgnoreCertificateRequest is an optional function that can prevent the CertificateRequest
6467// and Kubernetes CSR controllers from reconciling a CertificateRequest resource. By default,
6568// the controllers will reconcile all CertificateRequest resources that match the issuerRef type.
69+ // This function will be called by the CertificateRequest reconcile loop and the Kubernetes CSR
70+ // reconcile loop for each type that matches the issuerRef type. If the function returns true,
71+ // the controller will not reconcile the CertificateRequest resource.
6672type IgnoreCertificateRequest func (
6773 ctx context.Context ,
6874 cr CertificateRequestObject ,
You can’t perform that action at this time.
0 commit comments