Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for clusterDomain (0.17 sec)

  1. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    		t.Fatalf("found different object type than expected: %s", reflect.TypeOf(cfg))
    	} else if kubeletCfg.config.ClusterDomain != clusterDomain {
    		t.Fatalf("unexpected control value (clusterDomain):\n\tgot: %q\n\texpected: %q", kubeletCfg.config.ClusterDomain, clusterDomain)
    	}
    }
    
    func TestKubeletFromDocumentMap(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. pkg/kubelet/network/dns/dns.go

    func (c *Configurer) generateSearchesForDNSClusterFirst(hostSearch []string, pod *v1.Pod) []string {
    	if c.ClusterDomain == "" {
    		return hostSearch
    	}
    
    	nsSvcDomain := fmt.Sprintf("%s.svc.%s", pod.Namespace, c.ClusterDomain)
    	svcDomain := fmt.Sprintf("svc.%s", c.ClusterDomain)
    	clusterSearch := []string{nsSvcDomain, svcDomain, c.ClusterDomain}
    
    	return omitDuplicates(append(clusterSearch, hostSearch...))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/componentconfigs/kubelet.go

    	}
    
    	if kc.config.ClusterDomain == "" {
    		kc.config.ClusterDomain = cfg.Networking.DNSDomain
    	} else if cfg.Networking.DNSDomain != "" && kc.config.ClusterDomain != cfg.Networking.DNSDomain {
    		warnDefaultComponentConfigValue(kind, "clusterDomain", cfg.Networking.DNSDomain, kc.config.ClusterDomain)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/go/printer/testdata/alignment.golden

    	RegistryPullQPS:		s.RegistryPullQPS,
    	RegistryBurst:			s.RegistryBurst,
    	MinimumGCAge:			s.MinimumGCAge,
    	MaxPerPodContainerCount:	s.MaxPerPodContainerCount,
    	MaxContainerCount:		s.MaxContainerCount,
    	ClusterDomain:			s.ClusterDomain,
    	ClusterDNS:			s.ClusterDNS,
    	Runonce:			s.RunOnce,
    	Port:				s.Port,
    	ReadOnlyPort:			s.ReadOnlyPort,
    	CadvisorInterface:		cadvisorInterface,
    	EnableServer:			s.EnableServer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  5. src/go/printer/testdata/alignment.input

        MinimumGCAge:                   s.MinimumGCAge,
        MaxPerPodContainerCount:        s.MaxPerPodContainerCount,
        MaxContainerCount:              s.MaxContainerCount,
        ClusterDomain:                  s.ClusterDomain,
        ClusterDNS:                     s.ClusterDNS,
        Runonce:                        s.RunOnce,
        Port:                           s.Port,
        ReadOnlyPort:                   s.ReadOnlyPort,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kube/inject/testdata/inputs/hello.yaml.17.values.gen.yaml

        "omitSidecarInjectorConfigMap": false,
        "operatorManageWebhooks": false,
        "pilotCertProvider": "istiod",
        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks.yaml.15.values.gen.yaml

        "omitSidecarInjectorConfigMap": false,
        "operatorManageWebhooks": false,
        "pilotCertProvider": "istiod",
        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyv2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.values.gen.yaml

        "omitSidecarInjectorConfigMap": false,
        "operatorManageWebhooks": false,
        "pilotCertProvider": "istiod",
        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyv2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.values.gen.yaml

        "omitSidecarInjectorConfigMap": false,
        "operatorManageWebhooks": false,
        "pilotCertProvider": "istiod",
        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyv2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top