Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isCertificateRequestApproved (0.19 sec)

  1. pkg/controller/certificates/signer/signer.go

    	}
    	return ret, nil
    }
    
    func (s *signer) handle(ctx context.Context, csr *capi.CertificateSigningRequest) error {
    	// Ignore unapproved or failed requests
    	if !certificates.IsCertificateRequestApproved(csr) || certificates.HasTrueCondition(csr, capi.CertificateFailed) {
    		return nil
    	}
    
    	// Fast-path to avoid any additional processing if the CSRs signerName does not match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top