Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for targetClusters (0.23 sec)

  1. pkg/test/framework/components/echo/deployment/builder.go

    	// cache the namespace, so manually added echo.Configs can be a part of it
    	b.namespaces[cfg.Namespace.Prefix()] = cfg.Namespace
    
    	targetClusters := b.clusters
    	if cfg.Cluster != nil {
    		targetClusters = cluster.Clusters{cfg.Cluster}
    	}
    
    	deployedTo := 0
    	for idx, c := range targetClusters {
    		ec, ok := c.(echo.Cluster)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    	var targetClusters []cluster.Cluster
    	if watchLocalNamespace {
    		// when configured to watch istiod local namespace, secrets go to the external cluster
    		// and primary clusters
    		targetClusters = i.ctx.AllClusters().Primaries()
    	} else {
    		// when configured to watch istiod config namespace, secrets go to config clusters
    		targetClusters = i.ctx.AllClusters().Configs()
    	}
    
    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