Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for clusterDomain (0.27 sec)

  1. pkg/kubelet/network/dns/dns_test.go

    		t.Errorf("expected nameserver %s, got %+v", clusterNS, options[0].DNS)
    	}
    	if len(options[0].DNSSearch) == 0 || options[0].DNSSearch[0] != ".svc."+configurer.ClusterDomain {
    		t.Errorf("expected search %s, got %+v", ".svc."+configurer.ClusterDomain, options[0].DNSSearch)
    	}
    	if len(options[1].DNS) != 1 || options[1].DNS[0] != "127.0.0.1" {
    		t.Errorf("expected nameserver 127.0.0.1, got %+v", options[1].DNS)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    // given that pod's spec and annotations or returns an error.
    func (kl *Kubelet) GeneratePodHostNameAndDomain(pod *v1.Pod) (string, string, error) {
    	clusterDomain := kl.dnsConfigurer.ClusterDomain
    
    	hostname := pod.Name
    	if len(pod.Spec.Hostname) > 0 {
    		if msgs := utilvalidation.IsDNS1123Label(pod.Spec.Hostname); len(msgs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		registerWithTaints:             registerWithTaints,
    		registerSchedulable:            registerSchedulable,
    		dnsConfigurer:                  dns.NewConfigurer(kubeDeps.Recorder, nodeRef, nodeIPs, clusterDNS, kubeCfg.ClusterDomain, kubeCfg.ResolverConfig),
    		serviceLister:                  serviceLister,
    		serviceHasSynced:               serviceHasSynced,
    		nodeLister:                     nodeLister,
    		nodeHasSynced:                  nodeHasSynced,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      quoted_dns_domain=$(yaml-quote "${DNS_DOMAIN}")
      cat <<EOF
    kind: KubeletConfiguration
    apiVersion: kubelet.config.k8s.io/v1beta1
    cgroupRoot: /
    clusterDNS:
      - ${quoted_dns_server_ip}
    clusterDomain: ${quoted_dns_domain}
    readOnlyPort: 10255
    EOF
    
      # Note: ENABLE_MANIFEST_URL is used by GKE.
      # TODO(mtaufen): remove this since it's not used in kubernetes/kubernetes nor
      # kubernetes/test-infra.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"clusterDomain": {
    						SchemaProps: spec.SchemaProps{
    							Description: "clusterDomain is the DNS domain for this cluster. If set, kubelet will configure all containers to search this domain in addition to the host's search domains. Default: \"\"",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top