Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for localisty (0.2 sec)

  1. istioctl/pkg/writer/envoy/configdump/endpoint.go

    				if includeConfigType {
    					addr = fmt.Sprintf("endpoint/%s", addr)
    				}
    				fmt.Fprintf(w, "%v\t%v\t%v\t%v\n",
    					addr,
    					ep.GetHealthStatus().String(),
    					util.LocalityToString(llb.Locality),
    					eds.ClusterName,
    				)
    			}
    		}
    	}
    
    	return w.Flush()
    }
    
    func (c *ConfigWriter) retrieveSortedEndpointsSlice(filter EndpointFilter) ([]*endpoint.ClusterLoadAssignment, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util_test.go

    	tests := []struct {
    		name     string
    		locality string
    		want     *core.Locality
    		reverse  string
    	}{
    		{
    			name:     "nil locality",
    			locality: "",
    			want:     &core.Locality{},
    		},
    		{
    			name:     "locality with only region",
    			locality: "region",
    			want: &core.Locality{
    				Region: "region",
    			},
    		},
    		{
    			name:     "locality with region and zone",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. pkg/bootstrap/platform/aws_test.go

    		t.Run(v.name, func(tt *testing.T) {
    			server, url := setupHTTPServer(v.handlers)
    			defer server.Close()
    			awsMetadataIPv4URL = url.String()
    			locality := NewAWS(false).Locality()
    			if !reflect.DeepEqual(locality, v.want) {
    				t.Errorf("unexpected locality. want :%v, got :%v", v.want, locality)
    			}
    		})
    	}
    }
    
    func TestIsAWS(t *testing.T) {
    	cases := []struct {
    		name     string
    		handlers map[string]handlerFunc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 18 13:10:06 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    				},
    				Metadata: &model.NodeMetadata{
    					Labels: labels.Instance{
    						"k1":                       "v1",
    						label.TopologyNetwork.Name: "mynetwork",
    					},
    				},
    				Locality: &core.Locality{
    					Region: "myregion",
    				},
    			},
    			expected: labels.Instance{
    				"k1":                       "v1",
    				NodeRegionLabelGA:          "myregion",
    				label.TopologyNetwork.Name: "mynetwork",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. pkg/test/loadbalancersim/lb_test.go

    	}
    
    	wg.Wait()
    
    	c := s.mesh.Clients()[0]
    	clientLocality := c.Locality()
    	clientLatency := clientLatencies[0]
    
    	nodesSameZone := s.mesh.Nodes().Select(locality.MatchZone(clientLocality))
    	nodesSameRegion := s.mesh.Nodes().Select(locality.MatchOtherZoneInSameRegion(clientLocality))
    	nodesOtherRegion := s.mesh.Nodes().Select(locality.Not(locality.MatchRegion(clientLocality)))
    
    	// Store in the output.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- if ne $.Locality "" }}
          istio-locality: {{ $.Locality }}
    {{- end }}
      template:
        metadata:
          labels:
            app: {{ $.Service }}
            version: {{ $subset.Version }}
            test.istio.io/class: {{ $.WorkloadClass }}
    {{- if $.Compatibility }}
            istio.io/rev: {{ $revision }}
    {{- end }}
    {{- if ne $.Locality "" }}
            istio-locality: {{ $.Locality }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    	for _, localityLbEndpoint := range c.LoadAssignment.Endpoints {
    		locality := localityLbEndpoint.Locality
    		if locality.Region == "region1" && locality.Zone == "zone1" && locality.SubZone == "subzone1" {
    			g.Expect(localityLbEndpoint.Priority).To(Equal(uint32(0)))
    		} else if locality.Region == "region1" && locality.Zone == "zone1" && locality.SubZone == "subzone2" {
    			g.Expect(localityLbEndpoint.Priority).To(Equal(uint32(1)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. tests/integration/pilot/locality_test.go

    kind: ServiceEntry
    metadata:
      name: external-service-locality
    spec:
      hosts:
      - {{.Host}}
      location: MESH_EXTERNAL
      ports:
      - name: http
        number: 80
        protocol: HTTP
      resolution: {{.Resolution}}
      endpoints:
      - address: {{.Local}}
        locality: region/zone/subzone
      - address: {{.Remote}}
        locality: notregion/notzone/notsubzone
      {{ if ne .NearLocal "" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                            "cluster_name": "sds-grpc",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
                                        {
                                            "endpoint": {
                                                "address": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_cache.go

    // Implements XdsCacheEntry interface.
    type clusterCache struct {
    	clusterName string
    
    	// proxy related cache fields
    	proxyVersion    string         // will be matched by envoyfilter patches
    	locality        *core.Locality // identifies the locality the cluster is generated for
    	proxyClusterID  string         // identifies the kubernetes cluster a proxy is in
    	proxySidecar    bool           // identifies if this proxy is a Sidecar
    	hbone           bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top