Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EnableGatewayAPIStatus (0.29 sec)

  1. pilot/pkg/features/experimental.go

    			" be enabled. In addition to this being enabled, the gateway-api CRDs need to be installed.").Get()
    
    	EnableGatewayAPIStatus = env.Register("PILOT_ENABLE_GATEWAY_API_STATUS", true,
    		"If this is set to true, gateway-api resources will have status written to them").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/configcontroller.go

    		return nil
    	}
    	configController := s.makeKubeConfigController(args)
    	s.ConfigStores = append(s.ConfigStores, configController)
    	if features.EnableGatewayAPI {
    		if s.statusManager == nil && features.EnableGatewayAPIStatus {
    			s.initStatusManager(args)
    		}
    		gwc := gateway.NewController(s.kubeClient, configController, s.kubeClient.CrdWatcher().WaitForCRD,
    			s.environment.CredentialsController, args.RegistryOptions.KubeOptions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/controller.go

    		return filterNamespace(c.state.VirtualService, namespace)
    	default:
    		return nil
    	}
    }
    
    func (c *Controller) SetStatusWrite(enabled bool, statusManager *status.Manager) {
    	if enabled && features.EnableGatewayAPIStatus && statusManager != nil {
    		c.statusController.Store(
    			statusManager.CreateGenericController(func(status any, context any) status.GenerationProvider {
    				return &gatewayGeneration{context}
    			}),
    		)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top