Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for dns2 (0.12 sec)

  1. pkg/proxy/nftables/proxier_test.go

    		# svc2
    		add chain ip kube-proxy service-42NFTM6N-ns2/svc2/tcp/p80
    		add rule ip kube-proxy service-42NFTM6N-ns2/svc2/tcp/p80 ip daddr 172.30.0.42 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    		add rule ip kube-proxy service-42NFTM6N-ns2/svc2/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-SGOXE6O3-ns2/svc2/tcp/p80__10.180.0.2/80 }
    		add chain ip kube-proxy external-42NFTM6N-ns2/svc2/tcp/p80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    		if err != nil {
    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    		addNodes(manager.nodeStore, 0, 5, nil)
    
    		// Lister (cache) says it's NOT deleted.
    		ds2 := *ds
    		ds2.DeletionTimestamp = nil
    		err = manager.dsStore.Add(&ds2)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// The existence of a matching orphan should block all actions in this state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    }
    
    # Sets up the manifests of kube-dns for k8s addons.
    function setup-kube-dns-manifest {
      setup-addon-manifests "addons" "0-dns/kube-dns"
      local -r kubedns_file="${dst_dir}/0-dns/kube-dns/kube-dns.yaml"
      mv "${dst_dir}/0-dns/kube-dns/kube-dns.yaml.in" "${kubedns_file}"
      if [ -n "${CUSTOM_KUBE_DNS_YAML:-}" ]; then
        # Replace with custom GKE kube-dns deployment.
        cat > "${kubedns_file}" <<EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertHeader("", "ef")
      }
    
      @Test
      fun customDns() {
        // Configure a DNS that returns our local MockWebServer for android.com.
        val dns = FakeDns()
        dns["android.com"] = Dns.SYSTEM.lookup(server.url("/").host)
        client =
          client.newBuilder()
            .dns(dns)
            .build()
        server.enqueue(MockResponse())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    }
    
    func TestValidateServiceEntries(t *testing.T) {
    	cases := []struct {
    		name    string
    		in      *networking.ServiceEntry
    		valid   bool
    		warning bool
    	}{
    		{
    			name: "discovery type DNS", in: &networking.ServiceEntry{
    				Hosts: []string{"*.google.com"},
    				Ports: []*networking.ServicePort{
    					{Number: 80, Protocol: "http", Name: "http-valid1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    noticeable.news
    
    // Now-DNS : https://now-dns.com
    // Submitted by Steve Russell <steve@now-dns.com>
    dnsking.ch
    mypi.co
    n4t.co
    001www.com
    ddnslive.com
    myiphost.com
    forumz.info
    16-b.it
    32-b.it
    64-b.it
    soundcast.me
    tcp4.me
    dnsup.net
    hicam.net
    now-dns.net
    ownip.net
    vpndns.net
    dynserv.org
    now-dns.org
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    		{
    			// We should only capture traffic to servers in /etc/resolv.conf nameservers
    			// This checks we do not capture traffic to other servers.
    			// This is important for cases like app -> istio dns server -> dnsmasq -> upstream
    			// If we captured all DNS traffic, we would loop dnsmasq traffic back to our server.
    			name:     "tcp localhost server",
    			ips:      ipv4,
    			expected: nil,
    			protocol: "tcp",
    			skipCNI:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    				},
    			},
    		},
    	}
    	testPod2 := testPod1.DeepCopy()
    	testPod2.UID = "2222"
    	testPod2.Name = "pod2"
    	testPod2.Namespace = "ns2"
    	testPod3 := testPod1.DeepCopy()
    	testPod3.UID = "3333"
    	testPod3.Name = "pod3"
    	testPod3.Namespace = "ns2"
    
    	testKubelet.fakeKubeClient = fake.NewSimpleClientset(testPod1, testPod2, testPod3)
    	kubelet.kubeClient = testKubelet.fakeKubeClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		"|http|host-3.dns-is-faked.golang:" + port,
    	}
    	if got := tr.IdleConnKeysForTesting(); !reflect.DeepEqual(got, want) {
    		t.Fatalf("idle conn keys mismatch.\n got: %q\nwant: %q\n", got, want)
    	}
    
    	// Now hitting the 5th host should kick out the first host:
    	hitHost(4)
    	want = []string{
    		"|http|host-1.dns-is-faked.golang:" + port,
    		"|http|host-2.dns-is-faked.golang:" + port,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. istioctl/pkg/authz/testdata/configdump.yaml

               "typed_config": {
                "@type": "type.googleapis.com/envoy.extensions.filters.network.tcp_proxy.v3.TcpProxy",
                "stat_prefix": "outbound|53||kube-dns.kube-system.svc.cluster.local",
                "cluster": "outbound|53||kube-dns.kube-system.svc.cluster.local"
               }
              }
             ]
            }
           ],
           "traffic_direction": "OUTBOUND",
           "bind_to_port": false
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
Back to top