Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for addStartFunc (0.24 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)
  3. pilot/pkg/bootstrap/configcontroller.go

    	s.configController = aggregateConfigController
    
    	// Create the config store.
    	s.environment.ConfigStore = aggregateConfigController
    
    	// Defer starting the controller until after the service is created.
    	s.addStartFunc("config controller", func(stop <-chan struct{}) error {
    		go s.configController.Run(stop)
    		return nil
    	})
    
    	return nil
    }
    
    func (s *Server) initK8SConfigStore(args *PilotArgs) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top