Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for onRootCertUpdate (0.23 sec)

  1. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	backOffTime        time.Duration
    	ca                 *IstioCA
    	onRootCertUpdate   func() error
    }
    
    // NewSelfSignedCARootCertRotator returns a new root cert rotator instance that
    // rotates self-signed root cert periodically.
    // nolint: gosec
    // Not security sensitive code
    func NewSelfSignedCARootCertRotator(config *SelfSignedCARootCertRotatorConfig,
    	ca *IstioCA,
    	onRootCertUpdate func() error,
    ) *SelfSignedCARootCertRotator {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca.go

    	KeyCertBundle *util.KeyCertBundle
    
    	// Config for creating self-signed root cert rotator.
    	RotatorConfig *SelfSignedCARootCertRotatorConfig
    
    	// OnRootCertUpdate is the cb which can only be called by self-signed root cert rotator
    	OnRootCertUpdate func() error
    }
    
    type RootCertUpdateFunc func() error
    
    // NewSelfSignedIstioCAOptions returns a new IstioCAOptions instance using self-signed certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/istio_ca.go

    		// or it is `cacerts` secret mounted with "istio-generated" key set.
    		caOpts, err = s.createSelfSignedCACertificateOptions(&fileBundle, opts)
    		if err != nil {
    			return nil, err
    		}
    		caOpts.OnRootCertUpdate = s.updateRootCertAndGenKeyCert
    	} else {
    		// The secret is mounted and the "istio-generated" key is not used.
    		log.Info("Use local CA certificate")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top