Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ProcessRemoteTrustAnchors (0.28 sec)

  1. pilot/pkg/trustbundle/trustbundle.go

    		Source:            sourceSpiffeEndpoints,
    	})
    	if err != nil {
    		trustBundleLog.Errorf("failed to update meshConfig Spiffe trustAnchors: %v", err)
    	}
    }
    
    func (tb *TrustBundle) ProcessRemoteTrustAnchors(stop <-chan struct{}, pollInterval time.Duration) {
    	ticker := time.NewTicker(pollInterval)
    	defer ticker.Stop()
    	for {
    		select {
    		case <-ticker.C:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pilot/pkg/trustbundle/trustbundle_test.go

    	// Test2: Append server1 as spiffe endpoint to existing MeshConfig
    
    	// Start processing remote anchor update with poll frequency.
    	go tb.ProcessRemoteTrustAnchors(stop, 200*time.Millisecond)
    	tb.AddMeshConfigUpdate(&meshconfig.MeshConfig{CaCertificates: []*meshconfig.MeshConfig_CertificateData{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    			Reason: model.NewReasonStats(model.GlobalUpdate),
    		}
    		s.XDSServer.ConfigUpdate(pushReq)
    	})
    
    	s.addStartFunc("remote trust anchors", func(stop <-chan struct{}) error {
    		go s.workloadTrustBundle.ProcessRemoteTrustAnchors(stop, tb.RemoteDefaultPollPeriod)
    		return nil
    	})
    
    	// MeshConfig: Add initial roots
    	err = s.workloadTrustBundle.AddMeshConfigUpdate(s.environment.Mesh())
    	if err != nil {
    		return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top