Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 142 for ClusterID (0.23 sec)

  1. pilot/pkg/networking/core/httproute.go

    			return services[i].Hostname <= services[j].Hostname
    		})
    		routeCache = &istio_route.Cache{
    			RouteName:               routeName,
    			ProxyVersion:            node.Metadata.IstioVersion,
    			ClusterID:               string(node.Metadata.ClusterID),
    			DNSDomain:               node.DNSDomain,
    			DNSCapture:              bool(node.Metadata.DNSCapture),
    			DNSAutoAllocate:         bool(node.Metadata.DNSAutoAllocate),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		Node: &model.Node{
    			ID: nodeID,
    			Metadata: &model.BootstrapNodeMetadata{
    				NodeMetadata: model.NodeMetadata{
    					Namespace: namespace,
    					Generator: "grpc",
    					ClusterID: constants.DefaultClusterName,
    				},
    			},
    		},
    		DiscoveryAddress: fmt.Sprintf("127.0.0.1:%d", xdsPort),
    		CertDir:          path.Join(env.IstioSrc, "tests/testdata/certs/default"),
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    					ServiceAccount:    "sa3",
    					Node:              "",
    					CanonicalName:     "other",
    					CanonicalRevision: "latest",
    					WorkloadType:      workloadapi.WorkloadType_POD,
    					WorkloadName:      "name3",
    					ClusterId:         testC,
    				},
    			},
    		},
    	}})
    	s.assertEvent(t, s.wleXdsName("name2"))
    	s.assertEvent(t, s.wleXdsName("name3"))
    
    	// Non-existent IP should have no response
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/context.go

    // the proxy's cluster id or the given cluster id is unspecified ("").
    func (node *Proxy) InCluster(cluster cluster.ID) bool {
    	return node == nil || identifier.IsSameOrEmpty(cluster.String(), node.Metadata.ClusterID.String())
    }
    
    // IsWaypointProxy returns true if the proxy is acting as a waypoint proxy in an ambient mesh.
    func (node *Proxy) IsWaypointProxy() bool {
    	return node.Type == Waypoint
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  5. pilot/pkg/model/endpointshards.go

    	// IncrementalPush just pushes endpoints.
    	IncrementalPush
    	// FullPush triggers full push - typically used for new services.
    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			ServicePort: servicePort[0],
    			Endpoint: &model.IstioEndpoint{
    				Address:         "6.6.6.6",
    				ServicePortName: servicePort[0].Name,
    				EndpointPort:    10001,
    				Locality: model.Locality{
    					ClusterID: "",
    					Label:     "region1/zone1/subzone1",
    				},
    				LbWeight: 40,
    				TLSMode:  model.IstioMutualTLSModeLabel,
    			},
    		},
    		{
    			Service:     service,
    			ServicePort: servicePort[0],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/debug.go

    	Total     int         `json:"totalClients"`
    	Connected []AdsClient `json:"clients,omitempty"`
    }
    
    // SyncStatus is the synchronization status between Pilot and a given Envoy
    type SyncStatus struct {
    	ClusterID            string         `json:"cluster_id,omitempty"`
    	ProxyID              string         `json:"proxy,omitempty"`
    	ProxyType            model.NodeType `json:"proxy_type,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/discovery.go

    			continue
    		}
    		clients = append(clients, con)
    	}
    	return clients
    }
    
    // SortedClients returns all currently connected clients in an ordered manner.
    // Sorting order priority is as follows: ClusterID, Namespace, ID.
    func (s *DiscoveryServer) SortedClients() []*Connection {
    	clients := s.Clients()
    	sort.Slice(clients, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    	Status                WorkloadStatus `protobuf:"varint,17,opt,name=status,proto3,enum=istio.workload.WorkloadStatus" json:"status,omitempty"`
    	// The cluster ID that the workload instance belongs to
    	ClusterId string `protobuf:"bytes,18,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
    	// The Locality defines information about where a workload is geographically deployed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/deployment.go

    			"-o", subsetDir,
    		}
    		if ctx.Clusters().IsMulticluster() {
    			// When VMs talk about "cluster", they refer to the cluster they connect to for discovery
    			cmd = append(cmd, "--clusterID", cfg.Cluster.Name())
    		}
    		if cfg.AutoRegisterVM {
    			cmd = append(cmd, "--autoregister")
    		}
    		if !ctx.Environment().(*kube.Environment).Settings().LoadBalancerSupported {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top