Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 952 for dns2 (0.05 sec)

  1. pilot/pkg/model/network.go

    		defer wg.Done()
    
    		res := n.client.Query(new(dns.Msg).SetQuestion(dns.Fqdn(name), dnsType))
    
    		mu.Lock()
    		defer mu.Unlock()
    		if res.Rcode == dns.RcodeServerFailure {
    			errs = multierror.Append(errs, fmt.Errorf("upstream dns failure, qtype: %v", dnsType))
    			return
    		}
    		for _, rr := range res.Answer {
    			switch record := rr.(type) {
    			case *dns.A:
    				out = append(out, record.A.String())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/manifests.go

    limitations under the License.
    */
    
    package dns
    
    const (
    	// CoreDNSService is the CoreDNS Service manifest
    	CoreDNSService = `
    apiVersion: v1
    kind: Service
    metadata:
      labels:
        k8s-app: kube-dns
        kubernetes.io/cluster-service: "true"
        kubernetes.io/name: "CoreDNS"
      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 09:59:39 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/name_table.go

    	"istio.io/istio/pilot/pkg/model"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    	dnsServer "istio.io/istio/pkg/dns/server"
    )
    
    // BuildNameTable produces a table of hostnames and their associated IPs that can then
    // be used by the agent to resolve DNS. This logic is always active. However, local DNS resolution
    // will only be effective if DNS capture is enabled in the proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. cluster/addons/dns/coredns/coredns.yaml.sed

    apiVersion: v1
    kind: Service
    metadata:
      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
        prometheus.io/scrape: "true"
      labels:
        k8s-app: kube-dns
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
        kubernetes.io/name: "CoreDNS"
    spec:
      selector:
        k8s-app: kube-dns
      clusterIP: $DNS_SERVER_IP
      ports:
      - name: dns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/serviceentry-missing-addresses-protocol.yaml

      location: MESH_EXTERNAL
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-entry-test-03 # Expected: validation error missing addresses and protocol
      namespace: default
    spec:
      hosts:
        - 'istio.io'
      exportTo:
        - "."
      ports:
        - number: 443
          name: https
      location: MESH_EXTERNAL
      resolution: DNS
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. src/net/conf_test.go

    			nss:    nssStr(t, "hosts: files myhostname mdns4_minimal [NOTFOUND=return] dns mdns4"),
    			hostTests: []nssHostTest{
    				{"x.com", "myhostname", hostLookupFilesDNS},
    				{"somehostname", "myhostname", hostLookupFilesDNS},
    				{"myhostname", "myhostname", hostLookupCgo},
    			},
    		},
    		// Debian Squeeze is just "dns,files", but lists all
    		// the default criteria for dns, but then has a
    		// non-standard but redundant notfound=return for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/RouteFailureTest.kt

        this.server1 = server
        this.server2 = server2
    
        socketFactory = SpecificHostSocketFactory(InetSocketAddress(server.hostName, server.port))
    
        client =
          clientTestRule.newClientBuilder()
            .dns(dns)
            .socketFactory(socketFactory)
            .eventListenerFactory(clientTestRule.wrap(listener))
            .build()
      }
    
      @Test
      fun http2OneBadHostOneGoodNoRetryOnConnectionFailure() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue May 14 17:48:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/images/images_test.go

    			cfg: &kubeadmapi.ClusterConfiguration{
    				ImageRepository: "foo.io",
    				DNS:             kubeadmapi.DNS{},
    			},
    		},
    		{
    			expected: kubeadmapiv1beta3.DefaultImageRepository + "/coredns/coredns:v1.11.1",
    			cfg: &kubeadmapi.ClusterConfiguration{
    				ImageRepository: kubeadmapiv1beta3.DefaultImageRepository,
    				DNS:             kubeadmapi.DNS{},
    			},
    		},
    		{
    			expected: "foo.io/coredns/coredns:v1.11.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. tests/testdata/certs/generate.sh

    # Create a DNS client certificate
    openssl genrsa -out "${WD}/dns/key.pem" 2048
    openssl req -new -sha256 -key "${WD}/dns/key.pem" -out "${WD}/dns-client.csr" -subj "/CN=server.default.svc.cluster.local" -config "${WD}/dns-client.conf"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. cluster/addons/dns-horizontal-autoscaler/README.md

    # DNS Horizontal Autoscaler
    
    DNS Horizontal Autoscaler enables horizontal autoscaling feature for DNS service
    in Kubernetes clusters. This autoscaler runs as a Deployment. It collects cluster
    status from the APIServer, horizontally scales the number of DNS backends based
    on demand. Autoscaling parameters could be tuned by modifying the `kube-dns-autoscaler`
    ConfigMap in `kube-system` namespace.
    
    Learn more about:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 596 bytes
    - Viewed (0)
Back to top