Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnsafeFeaturesEnabled (0.32 sec)

  1. pilot/pkg/features/pilot.go

    		"Gateway API controller name. istiod will only reconcile Gateway API resources referencing a GatewayClass with this controller name").Get()
    )
    
    // UnsafeFeaturesEnabled returns true if any unsafe features are enabled.
    func UnsafeFeaturesEnabled() bool {
    	return EnableUnsafeAdminEndpoints || EnableUnsafeAssertions || EnableUnsafeDeltaTest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    func (s *Server) Start(stop <-chan struct{}) error {
    	log.Infof("Starting Istiod Server with primary cluster %s", s.clusterID)
    
    	if features.UnsafeFeaturesEnabled() {
    		log.Warn("Server is starting with unsafe features enabled")
    	}
    
    	// Now start all of the components.
    	if err := s.server.Start(stop); 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