Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,514 for cluster1 (0.19 sec)

  1. pkg/test/framework/components/cluster/cluster.go

    	PrimaryName() string
    
    	// Config returns the config cluster for this cluster. Will return itself if
    	// IsConfig.
    	Config() Cluster
    
    	// ConfigName returns the name of the config cluster for this cluster.
    	ConfigName() string
    
    	// HTTPProxy returns the HTTP proxy config to connect to the cluster
    	HTTPProxy() string
    
    	// Metadata returns the value for a given metadata key for the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    func (p clusterPatcher) conditionallyAppend(l []*cluster.Cluster, hosts []host.Name, clusters ...*cluster.Cluster) []*cluster.Cluster {
    	if !p.hasPatches() {
    		return append(l, clusters...)
    	}
    	for _, c := range clusters {
    		if patched := p.doPatch(hosts, c); patched != nil {
    			l = append(l, patched)
    		}
    	}
    	return l
    }
    
    func (p clusterPatcher) insertedClusters() []*cluster.Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/cluster.go

    		if c.Cluster != nil {
    			clusterTyped := &cluster.Cluster{}
    			// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    			c.Cluster.TypeUrl = v3.ClusterType
    			err = c.Cluster.UnmarshalTo(clusterTyped)
    			if err != nil {
    				return nil, err
    			}
    			clusters = append(clusters, clusterTyped)
    		}
    	}
    	for _, c := range clusterDump.StaticClusters {
    		if c.Cluster != nil {
    			clusterTyped := &cluster.Cluster{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. hack/testdata/CRD/example-crd-1-cluster-scoped.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: examples.test.com
    spec:
      group: test.com
      scope: Cluster
      versions:
        - name: v1
          served: true
          storage: true
          schema:
            openAPIV3Schema:
              type: object
              properties:
                spec:
                  type: object
                  properties:
                    test:
                      type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 26 06:01:46 UTC 2022
    - 488 bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/workload.go

    	}
    	return out
    }
    
    func (ws Workloads) Clusters() cluster.Clusters {
    	clusters := make(map[string]cluster.Cluster)
    	for _, w := range ws {
    		if c := w.Cluster(); c != nil {
    			clusters[c.Name()] = c
    		}
    	}
    	out := make(cluster.Clusters, 0, len(clusters))
    	for _, c := range clusters {
    		out = append(out, c)
    	}
    
    	// Sort the clusters by name.
    	sort.SliceStable(out, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_waypoint.go

    	clusters = append(clusters, MainInternalCluster, EncapCluster)
    	// Creates per-VIP load balancing upstreams.
    	clusters = append(clusters, cb.buildWaypointInboundVIP(proxy, svcs)...)
    	// Upstream of the "encap" listener.
    	clusters = append(clusters, cb.buildWaypointConnectOriginate(proxy, push))
    
    	for _, c := range clusters {
    		if c.TransportSocket != nil && c.TransportSocketMatches != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/deployment/builder.go

    	}
    	b.templates = templates
    
    	return b.WithClusters(clusters...)
    }
    
    type builder struct {
    	ctx resource.Context
    
    	// clusters contains the current set of clusters that subsequent With calls will be applied to,
    	// if the Config passed to With does not explicitly choose a cluster.
    	clusters cluster.Clusters
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    					Status:            workloadapi.WorkloadStatus_HEALTHY,
    					ClusterId:         testC,
    					Services: map[string]*workloadapi.PortList{
    						"ns/a.example.com": {
    							Ports: []*workloadapi.Port{{
    								ServicePort: 80,
    								TargetPort:  80,
    							}},
    						},
    					},
    				},
    				{
    					Uid:               "cluster0/networking.istio.io/ServiceEntry/ns/name/b.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pkg/kube/multicluster/secretcontroller.go

    	log.Infof("Deleting cluster_id=%v configured by secret=%v", cluster.ID, secretKey)
    	cluster.Stop()
    	c.handleDelete(cluster.ID)
    	c.cs.Delete(secretKey, cluster.ID)
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    func (c *Controller) handleAdd(cluster *Cluster) []ComponentConstraint {
    	syncers := make([]ComponentConstraint, 0, len(c.handlers))
    	for _, handler := range c.handlers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/kube.go

    	}
    	return nil
    }
    
    func getTargetClusterListForCluster(targetClusters []cluster.Cluster, c cluster.Cluster) []cluster.Cluster {
    	var outClusters []cluster.Cluster
    	scopes.Framework.Infof("Secret from cluster: %s will be placed in following clusters", c.Name())
    	for _, cc := range targetClusters {
    		// if cc is an external cluster, config cluster's secret should have already been
    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