Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for ipaddresses (0.21 sec)

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

    	pr := &model.Proxy{
    		Type:        model.SidecarProxy,
    		IPAddresses: []string{"2001:1::1"},
    		Metadata: &model.NodeMetadata{
    			Namespace: "not-default",
    		},
    		ConfigNamespace: "not-default",
    	}
    	return pr
    }
    
    var (
    	tnow        = time.Now()
    	proxyHTTP10 = model.Proxy{
    		Type:        model.SidecarProxy,
    		IPAddresses: []string{"1.1.1.1"},
    		ID:          "v0.default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    	case model.SidecarProxy:
    		proxy = &model.Proxy{
    			Type:         model.SidecarProxy,
    			IPAddresses:  c.proxyIps,
    			Locality:     c.locality,
    			DNSDomain:    "com",
    			Metadata:     c.meta,
    			IstioVersion: c.istioVersion,
    		}
    	case model.Router:
    		proxy = &model.Proxy{
    			Type:         model.Router,
    			IPAddresses:  []string{"6.6.6.6"},
    			Locality:     c.locality,
    			DNSDomain:    "default.example.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_builder_test.go

    	test.SetForTest(t, &features.EnableAdditionalIpv4OutboundListenerForIpv6Only, true)
    	cg := NewConfigGenTest(t, TestOptions{Services: testServices})
    	proxy := cg.SetupProxy(&model.Proxy{IPAddresses: []string{"1111:2222::1"}})
    
    	listeners := buildListeners(t, TestOptions{Services: testServices}, proxy)
    	vo := xdstest.ExtractListener(model.VirtualOutboundListenerName, listeners)
    	if vo == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    		sendHbone:          features.EnableHBONESend || proxy.IsWaypointProxy(),
    		locality:           proxy.Locality,
    		proxyLabels:        proxy.Labels,
    		proxyView:          proxy.GetView(),
    		proxyIPAddresses:   proxy.IPAddresses,
    		configNamespace:    proxy.ConfigNamespace,
    		req:                req,
    		cache:              cache,
    	}
    	if proxy.Metadata != nil {
    		if proxy.Metadata.TLSClientCertChain != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    			Service:     svc,
    			ServicePort: p,
    			Endpoint: &model.IstioEndpoint{
    				Address:         proxy.IPAddresses[0],
    				ServicePortName: p.Name,
    				EndpointPort:    uint32(targetPort),
    			},
    		})
    	}
    	return ret
    }
    
    func TestInboundClusters(t *testing.T) {
    	proxy := &model.Proxy{
    		IPAddresses: []string{"1.2.3.4"},
    		Metadata:    &model.NodeMetadata{},
    	}
    	service := &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    			ips:          []string{"::1"},
    			ipv4Expected: false,
    			ipv6Expected: true,
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			proxy := &model.Proxy{IPAddresses: tt.ips}
    			cg := NewConfigGenTest(t, TestOptions{})
    
    			cb := NewClusterBuilder(cg.SetupProxy(proxy), &model.PushRequest{Push: cg.PushContext()}, nil)
    			passthrough := cb.buildInboundPassthroughCluster()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    					Phase: v1.PodPending,
    					PodIP: "1.2.3.4",
    				},
    			},
    			result: &workloadapi.Workload{
    				Uid:               "cluster0//Pod/ns/name",
    				Name:              "name",
    				Namespace:         "ns",
    				Addresses:         [][]byte{netip.AddrFrom4([4]byte{1, 2, 3, 4}).AsSlice()},
    				Network:           testNW,
    				CanonicalName:     "name",
    				CanonicalRevision: "latest",
    				WorkloadType:      workloadapi.WorkloadType_POD,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    	addresses := []string{cc.bind}
    	if len(cc.extraBind) > 0 {
    		addresses = append(addresses, cc.extraBind...)
    	}
    	ll := lb.buildInboundListener(cc.Name(istionetworking.ListenerProtocolTCP), addresses, cc.port.TargetPort, true, chains)
    	return ll
    }
    
    func (lb *ListenerBuilder) buildInboundListener(name string, addresses []string, tPort uint32,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    // NamedAddress - Service has no concept of named address. For cloud's that have named addresses they can be configured by annotations,
    //
    //	which users can add to the Gateway.
    func IsManaged(gw *k8s.GatewaySpec) bool {
    	if len(gw.Addresses) == 0 {
    		return true
    	}
    	if len(gw.Addresses) > 1 {
    		return false
    	}
    	if t := gw.Addresses[0].Type; t == nil || *t == k8s.IPAddressType {
    		return true
    	}
    	return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/api.go

    }
    
    type ZtunnelService struct {
    	Name         string          `json:"name"`
    	Namespace    string          `json:"namespace"`
    	Hostname     string          `json:"hostname"`
    	Addresses    []string        `json:"vips"`
    	Ports        map[string]int  `json:"ports"`
    	LoadBalancer *LoadBalancer   `json:"loadBalancer"`
    	Waypoint     *GatewayAddress `json:"waypoint"`
    }
    
    type PolicyMatch struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top