Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for targetClusters (0.12 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)
  3. pkg/test/framework/components/environment/kube/flags.go

    		if err != nil {
    			return nil, err
    		}
    		targetCluster, err := parseClusterIndex(parts[1])
    		if err != nil {
    			return nil, err
    		}
    		if _, ok := out[sourceCluster]; ok {
    			return nil, fmt.Errorf("multiple mappings for source cluster %d", sourceCluster)
    		}
    		out[sourceCluster] = targetCluster
    	}
    	return out, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top