Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LocalClusterSecretWatcher (0.28 sec)

  1. pkg/kube/multicluster/secretcontroller.go

    	// When these two are set to true, Istiod will be watching the namespace in which
    	// Istiod is running on the external cluster. Use the inCluster credentials to
    	// create a kubeclientset
    	if features.LocalClusterSecretWatcher && features.ExternalIstiod {
    		config, err := kube.InClusterConfig(configOverrides...)
    		if err != nil {
    			log.Errorf("Could not get istiod incluster configuration: %v", err)
    			return nil
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    		"If enabled, metadata representing canonical services for ServiceEntry resources with a location of mesh_external will be populated"+
    			"in the cluster metadata for those endpoints.").Get()
    
    	LocalClusterSecretWatcher = env.Register("LOCAL_CLUSTER_SECRET_WATCHER", false,
    		"If enabled, the cluster secret watcher will watch the namespace of the external cluster instead of config cluster").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    		watchLocalNamespace := false
    		if i.primaryIOP.spec != nil && i.primaryIOP.spec.Values != nil {
    			values := OperatorValues(i.primaryIOP.spec.Values.Fields)
    			localClusterSecretWatcher := values.GetConfigValue("pilot.env.LOCAL_CLUSTER_SECRET_WATCHER")
    			if localClusterSecretWatcher.GetStringValue() == "true" && i.externalControlPlane {
    				watchLocalNamespace = true
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top