Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for initConfigController (0.15 sec)

  1. pilot/pkg/bootstrap/configcontroller.go

    	XDS ConfigSourceAddressScheme = "xds"
    	// k8s:// - load in-cluster k8s controller
    	// example k8s://
    	Kubernetes ConfigSourceAddressScheme = "k8s"
    )
    
    // initConfigController creates the config controller in the pilotConfig.
    func (s *Server) initConfigController(args *PilotArgs) error {
    	s.initStatusController(args, features.EnableStatus && features.EnableDistributionTracking)
    	meshConfig := s.environment.Mesh()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pkg/config/mesh/watcher.go

    		if !reflect.DeepEqual(meshConfig.ConfigSources, current.ConfigSources) {
    			log.Info("mesh configuration sources have changed")
    			// TODO Need to recreate or reload initConfigController()
    		}
    
    		w.MeshConfig.Store(meshConfig)
    		handlers = append(handlers, w.handlers...)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    	log.Info("initializing controllers")
    	s.initMulticluster(args)
    
    	s.initSDSServer()
    
    	if features.EnableNodeUntaintControllers {
    		s.initNodeUntaintController(args)
    	}
    
    	if err := s.initConfigController(args); err != nil {
    		return fmt.Errorf("error initializing config controller: %v", err)
    	}
    	if err := s.initServiceControllers(args); err != nil {
    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