Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ClusterDNS (0.21 sec)

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

    			clusterCfg: kubeadmapi.ClusterConfiguration{},
    			expected: kubeletConfig{
    				config: kubeletconfig.KubeletConfiguration{
    					FeatureGates:  map[string]bool{},
    					StaticPodPath: kubeadmapiv1.DefaultManifestsDir,
    					ClusterDNS:    []string{kubeadmapiv1.DefaultClusterDNSIP},
    					Authentication: kubeletconfig.KubeletAuthentication{
    						X509: kubeletconfig.KubeletX509Authentication{
    							ClientCAFile: constants.CACertName,
    						},
    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. cmd/kubeadm/app/componentconfigs/kubelet.go

    	}
    
    	clusterDNS := ""
    	dnsIP, err := constants.GetDNSIP(cfg.Networking.ServiceSubnet)
    	if err != nil {
    		clusterDNS = kubeadmapiv1.DefaultClusterDNSIP
    	} else {
    		clusterDNS = dnsIP.String()
    	}
    
    	if kc.config.ClusterDNS == nil {
    		kc.config.ClusterDNS = []string{clusterDNS}
    	} else if len(kc.config.ClusterDNS) != 1 || kc.config.ClusterDNS[0] != clusterDNS {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server_test.go

    port: 8080
    readOnlyPort: 10255
    systemReserved:
      memory: 2Gi
    clusterDNS:
      - 192.168.1.1
      - 192.168.1.5
      - 192.168.1.8
    `,
    			overwrittenConfigFields: map[string]interface{}{
    				"Port":         int32(8080),
    				"ReadOnlyPort": int32(10255),
    				"SystemReserved": map[string]string{
    					"memory": "2Gi",
    				},
    				"ClusterDNS": []string{"192.168.1.1", "192.168.1.5", "192.168.1.8"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. src/go/printer/testdata/alignment.golden

    	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,
    	EnableDebuggingHandlers:	s.EnableDebuggingHandlers,
    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

        MaxPerPodContainerCount:        s.MaxPerPodContainerCount,
        MaxContainerCount:              s.MaxContainerCount,
        ClusterDomain:                  s.ClusterDomain,
        ClusterDNS:                     s.ClusterDNS,
        Runonce:                        s.RunOnce,
        Port:                           s.Port,
        ReadOnlyPort:                   s.ReadOnlyPort,
        CadvisorInterface:              cadvisorInterface,
    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. cluster/addons/dns/nodelocaldns/README.md

    Design details [here](https://github.com/kubernetes/enhancements/blob/master/keps/sig-network/1024-nodelocal-cache-dns/README.md)
    
    This feature is graduating to GA in release 1.18(Beta in release 1.15).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. pkg/kubemark/hollow_kubelet.go

    	c.SyncFrequency.Duration = 10 * time.Second
    	c.EvictionPressureTransitionPeriod.Duration = 5 * time.Minute
    	c.MaxPods = int32(opt.MaxPods)
    	c.PodsPerCore = int32(opt.PodsPerCore)
    	c.ClusterDNS = []string{}
    	c.ImageGCHighThresholdPercent = 90
    	c.ImageGCLowThresholdPercent = 80
    	c.ProviderID = fmt.Sprintf("kubemark://%v", opt.NodeName)
    	c.VolumeStatsAggPeriod.Duration = time.Minute
    	c.CgroupRoot = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top