Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for IPV4 (0.12 sec)

  1. tests/integration/pilot/common/routing.go

    		protocol string
    		server   string
    		skipCNI  bool
    		expected []string
    	}{
    		{
    			name:     "tcp ipv4",
    			ips:      ipv4,
    			expected: []string{ipv4},
    			protocol: "tcp",
    		},
    		{
    			name:     "udp ipv4",
    			ips:      ipv4,
    			expected: []string{ipv4},
    			protocol: "udp",
    		},
    		{
    			name:     "tcp ipv6",
    			ips:      ipv6,
    			expected: []string{ipv6},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    		expectedAddr    string
    		expectedPort    uint32
    	}{
    		// ipv4 use cases
    		{
    			name:            "ipv4 host: defaultEndpoint set to 127.0.0.1:7073",
    			proxy:           ipv4Proxy,
    			defaultEndpoint: "127.0.0.1:7073",
    			expectedAddr:    "127.0.0.1",
    			expectedPort:    7073,
    		},
    		{
    			name:            "ipv4 host: defaultEndpoint set to [::1]:7073",
    			proxy:           ipv4Proxy,
    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. pkg/config/validation/validation_test.go

    					},
    				},
    			},
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		}, true, false},
    		{"ingress with invalid default endpoint in IPv4", &networking.Sidecar{
    			Ingress: []*networking.IstioIngressListener{
    				{
    					Port: &networking.SidecarPort{
    						Protocol: "http",
    						Number:   90,
    						Name:     "foo",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    		expectedFamily cluster.Cluster_DnsLookupFamily
    	}{
    		{
    			name:           "all ipv4, dual stack disabled",
    			clusterName:    "foo",
    			discovery:      cluster.Cluster_STRICT_DNS,
    			proxy:          getProxy(),
    			dualStack:      false,
    			expectedFamily: cluster.Cluster_V4_ONLY,
    		},
    		{
    			name:           "all ipv4, dual stack enabled",
    			clusterName:    "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    		},
    		{
    			nodeIP:   "127.0.0.1",
    			success:  false,
    			testName: "IPv4 loopback address",
    		},
    		{
    			nodeIP:   "::1",
    			success:  false,
    			testName: "IPv6 loopback address",
    		},
    		{
    			nodeIP:   "224.0.0.1",
    			success:  false,
    			testName: "multicast IPv4 address",
    		},
    		{
    			nodeIP:   "ff00::1",
    			success:  false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    		expected []metav1.TableRow
    	}{
    		{
    			// Test name, IPv4 only.
    			ccc: networking.ServiceCIDR{
    				ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    				Spec: networking.ServiceCIDRSpec{
    					CIDRs: []string{ipv4CIDR},
    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, IPv4, IPv6, Age.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    			podIPs: []v1.PodIP{
    				{IP: "192.168.0.1"},
    				{IP: "2001:db8::2"},
    			},
    		},
    		{
    			// by default the cluster prefers IPv4
    			name: "CRI dual-stack PodIPs override NodeAddresses prefer IPv4",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    				{Type: v1.NodeInternalIP, Address: "fd01::1234"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    			IssuingCertificateURL: []string{"http://crt.example.com/ca1.crt"},
    
    			DNSNames:       []string{"test.example.com"},
    			EmailAddresses: []string{"******@****.***"},
    			IPAddresses:    []net.IP{net.IPv4(127, 0, 0, 1).To4(), net.ParseIP("2001:4860:0:2001::68")},
    			URIs:           []*url.URL{parseURI("https://foo.com/wibble#foo")},
    
    			PolicyIdentifiers:       []asn1.ObjectIdentifier{[]int{1, 2, 3}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier_test.go

    						Protocol: ptr.To(v1.ProtocolUDP),
    					}}
    				}),
    			},
    			nodeIPs:           []string{"100.101.102.103"},
    			nodePortAddresses: []string{"0.0.0.0/0"},
    			/*since this is a node with only IPv4, proxier should not do anything */
    			expectedIPVS: &ipvstest.FakeIPVS{
    				Services:     map[ipvstest.ServiceKey]*utilipvs.VirtualServer{},
    				Destinations: map[ipvstest.ServiceKey][]*utilipvs.RealServer{},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    ates: "gateway" sidecar.istio.io/inject: "true" # Define the security context for the pod. # If unset, this will be automatically set to the minimum privileges required to bind to port 80 and 443. # On Kubernetes 1.22+, this only requires the `net.ipv4.ip_unprivileged_port_start` sysctl. securityContext: ~ containerSecurityCon: ~ service: # Type of service. Set to "None" to disable the service entirely type: LoadBalancer ports: - name: status-port port: 15021 protocol: TCP targetPort: 15021 - name:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top