Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getIPv6Proxy (0.42 sec)

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

    		DNSDomain:   "default.example.org",
    		Metadata: &model.NodeMetadata{
    			Namespace: "not-default",
    		},
    		ConfigNamespace: "not-default",
    	}
    	pr.DiscoverIPMode()
    	return pr
    }
    
    func getIPv6Proxy() *model.Proxy {
    	pr := &model.Proxy{
    		Type:        model.SidecarProxy,
    		IPAddresses: []string{"2001:1::1"},
    		Metadata: &model.NodeMetadata{
    			Namespace: "not-default",
    		},
    		ConfigNamespace: "not-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

    		},
    		{
    			name:                 "all ipv6, dual stack disabled",
    			proxy:                getIPv6Proxy(),
    			dualStack:            false,
    			expectedSrcAddr:      InboundPassthroughBindIpv6,
    			expectedExtraSrcAddr: "",
    		},
    		{
    			name:                 "all ipv6, dual stack enabled",
    			proxy:                getIPv6Proxy(),
    			dualStack:            true,
    			expectedSrcAddr:      InboundPassthroughBindIpv6,
    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/cluster_builder_test.go

    			discovery:      cluster.Cluster_STRICT_DNS,
    			proxy:          getIPv6Proxy(),
    			dualStack:      false,
    			expectedFamily: cluster.Cluster_V6_ONLY,
    		},
    		{
    			name:           "all ipv6, dual stack enabled",
    			clusterName:    "foo",
    			discovery:      cluster.Cluster_STRICT_DNS,
    			proxy:          getIPv6Proxy(),
    			dualStack:      true,
    			expectedFamily: cluster.Cluster_V6_ONLY,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top