Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 952 for dns2 (0.07 sec)

  1. tools/istio-clean-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.RedirectDNS, "ISTIO_META_DNS_CAPTURE")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. regression-test/README.md

    ...
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseHeadersEnd: Response{protocol=h2, code=200, message=, url=https://1.1.1.1/dns-query?dns=AAABAAABAAAAAAAAA3d3dwhmYWNlYm9vawNjb20AABwAAQ}
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseBodyStart
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseBodyEnd: byteCount=128
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Nov 13 07:09:56 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  3. hack/testdata/frontend-replicaset.yaml

                cpu: 100m
                memory: 100Mi
            env:
            - name: GET_HOSTS_FROM
              value: dns
              # If your cluster config does not include a dns service, then to
              # instead access environment variables to find service host
              # info, comment out the 'value: dns' line above, and uncomment the
              # line below.
              # value: env
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 929 bytes
    - Viewed (0)
  4. tests/testdata/config/external_services.yaml

            extsvc-http: 8002
    #
    #---
    #
    #apiVersion: networking.istio.io/v1alpha3
    #kind: ServiceEntry
    #metadata:
    #  name: external-svc-dns-ep
    #spec:
    #   hosts:
    #   - dnsep.extsvc.com
    #   ports:
    #   - number: 8003
    #     name: extsvc-http
    #     protocol: HTTP
    #   resolution: DNS
    #   endpoints:
    #    - address: dnsep1.weekly.istio.io
    #      ports:
    #        http: 8080
    #    - address: dnsep2.weekly.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  5. hack/testdata/frontend-controller.yaml

                cpu: 100m
                memory: 100Mi
            env:
            - name: GET_HOSTS_FROM
              value: dns
              # If your cluster config does not include a dns service, then to
              # instead access environment variables to find service host
              # info, comment out the 'value: dns' line above, and uncomment the
              # line below.
              # value: env
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 23 22:22:41 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/config/config_test.go

    	}
    }
    
    func TestUnmarshalSelectionSpec(t *testing.T) {
    	include := "ns1,ns2/d1,d2/p1,p2/l1=lv1,l2=lv2/a1=av1,a2=av2/c1,c2"
    	want := &SelectionSpec{
    		Namespaces:  []string{"ns1", "ns2"},
    		Deployments: []string{"d1", "d2"},
    		Pods:        []string{"p1", "p2"},
    		Labels: map[string]string{
    			"l1": "lv1",
    			"l2": "lv2",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 15 15:19:50 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  7. android-test/README.md

    ...
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseHeadersEnd: Response{protocol=h2, code=200, message=, url=https://1.1.1.1/dns-query?dns=AAABAAABAAAAAAAAA3d3dwhmYWNlYm9vawNjb20AABwAAQ}
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseBodyStart
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseBodyEnd: byteCount=128
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 14 08:26:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pkg/dns/client/monitoring.go

    )
    
    var (
    	requests = monitoring.NewSum(
    		"dns_requests_total",
    		"Total number of DNS requests.",
    	)
    
    	upstreamRequests = monitoring.NewSum(
    		"dns_upstream_requests_total",
    		"Total number of DNS requests forwarded to upstream.",
    	)
    
    	failures = monitoring.NewSum(
    		"dns_upstream_failures_total",
    		"Total number of DNS failures.",
    	)
    
    	requestDuration = monitoring.NewDistribution(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 07 15:55:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    	},
    
    	// #69: an empty DNS constraint should allow anything.
    	{
    		roots: []constraintsSpec{
    			{
    				ok: []string{"dns:"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:example.com"},
    		},
    	},
    
    	// #70: an empty DNS constraint should also reject everything.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.txt

    10.244.0.3:53                                    HEALTHY                  outbound|53||kube-dns.kube-system.svc.cluster.local
    10.244.0.8:9153                                  HEALTHY                  outbound|9153||kube-dns.kube-system.svc.cluster.local
    10.244.0.3:9153                                  HEALTHY                  outbound|9153||kube-dns.kube-system.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 14:17:23 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top