Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LOCAL_CLUSTER_SECRET_WATCHER (0.25 sec)

  1. tests/integration/pilot/localwatcher/localsecretwatcher_test.go

    		RequireMinVersion(17).
    		RequireMinClusters(2).
    		Setup(istio.Setup(&i, func(t resource.Context, cfg *istio.Config) {
    			cfg.ControlPlaneValues = `
    values:
      pilot:
        env:
          LOCAL_CLUSTER_SECRET_WATCHER: "true"`
    		})).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Run()
    }
    
    func TestTraffic(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/istio.go

    			}
    			retVal = thisVal
    		}
    	}
    	return retVal
    }
    
    // GetConfigValue returns a structpb value from a structpb map by
    // using a dotted path such as `pilot.env.LOCAL_CLUSTER_SECRET_WATCHER`.
    func (v OperatorValues) GetConfigValue(path string) *structpb.Value {
    	return getConfigValue(strings.Split(path, "."), v)
    }
    
    // Instance represents a deployed Istio instance
    type Instance interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    		// or in external cluster. The flag is named LOCAL_CLUSTER_SECRET_WATCHER and set as
    		// an environment variable for istiod.
    		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")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    			"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()
    
    	InformerWatchNamespace = env.Register("ISTIO_WATCH_NAMESPACE", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top