Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addStartFunc (0.11 sec)

  1. pilot/pkg/bootstrap/certcontroller.go

    			if err != nil {
    				log.Fatalf("failed regenerating key and cert for istiod by kubernetes: %v", err)
    			}
    			s.istiodCertBundleWatcher.SetAndNotify(newKeyPEM, newCertChain, newCaBundle)
    		}
    	})
    
    	s.addStartFunc("istiod server certificate rotation", func(stop <-chan struct{}) error {
    		go func() {
    			// Track TTL of DNS cert and renew cert in accordance to grace period.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	// internalStop is closed when the server is shutdown. This should be avoided as much as possible, in
    	// favor of AddStartFunc. This is only required if we *must* start something outside of this process.
    	// For example, everything depends on mesh config, so we use it there rather than trying to sequence everything
    	// in AddStartFunc
    	internalStop chan struct{}
    
    	webhookInfo *webhookInfo
    
    	statusReporter *distribution.Reporter
    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