Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for ClusterDNS (0.65 sec)

  1. 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)
  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/network/dns/dns_test.go

    			expectedError: true,
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.desc, func(t *testing.T) {
    			if tc.hasClusterDNS {
    				configurer.clusterDNS = testClusterDNS
    			} else {
    				configurer.clusterDNS = nil
    			}
    			pod.Spec.DNSPolicy = tc.dnsPolicy
    			pod.Spec.HostNetwork = tc.hostNetwork
    
    			resType, err := getPodDNSType(pod)
    			if tc.expectedError {
    				if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

          fi
    
          # dns
          if [[ "${ENABLE_CLUSTER_DNS}" = true ]]; then
            if [[ "${ENABLE_NODELOCAL_DNS:-}" == "true" ]]; then
              echo "clusterDNS: [ \"${LOCAL_DNS_IP}\" ]"
            else
              echo "clusterDNS: [ \"${DNS_SERVER_IP}\" ]"
            fi
            echo "clusterDomain: \"${DNS_DOMAIN}\""
          else
            # To start a private DNS server set ENABLE_CLUSTER_DNS and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    				return nil, err
    			}
    		} else {
    			return nil, err
    		}
    	}
    
    	clusterDNS := make([]net.IP, 0, len(kubeCfg.ClusterDNS))
    	for _, ipEntry := range kubeCfg.ClusterDNS {
    		ip := netutils.ParseIPSloppy(ipEntry)
    		if ip == nil {
    			klog.InfoS("Invalid clusterDNS IP", "IP", ipEntry)
    		} else {
    			clusterDNS = append(clusterDNS, ip)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    	// configure all containers to search this domain in addition to the
    	// host's search domains.
    	ClusterDomain string
    	// clusterDNS is a list of IP addresses for a cluster DNS server. If set,
    	// kubelet will configure all containers to use this for DNS resolution
    	// instead of the host's DNS servers.
    	ClusterDNS []string
    	// streamingConnectionIdleTimeout is the maximum time a streaming connection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.VolumePluginDir, "volume-plugin-dir", c.VolumePluginDir, "The full path of the directory in which to search for additional third party volume plugins")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. api/api-rules/violation_exceptions.list

    API rule violation: list_type_missing,k8s.io/kubelet/config/v1beta1,KubeletConfiguration,AllowedUnsafeSysctls
    API rule violation: list_type_missing,k8s.io/kubelet/config/v1beta1,KubeletConfiguration,ClusterDNS
    API rule violation: list_type_missing,k8s.io/kubelet/config/v1beta1,KubeletConfiguration,EnforceNodeAllocatable
    API rule violation: list_type_missing,k8s.io/kubelet/config/v1beta1,KubeletConfiguration,RegisterWithTaints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      quoted_dns_server_ip=$(yaml-quote "${DNS_SERVER_IP}")
      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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.18.md

    SIG Network is moving IPv6 to Beta in Kubernetes 1.18, after incrementing significantly the test coverage with new CI jobs.
    
    NodeLocal DNSCache is an add-on that runs a dnsCache pod as a daemonset to improve clusterDNS performance and reliability. The feature has been in Alpha since 1.13 release. The SIG Network is announcing the GA graduation of Node Local DNSCache [#1351](https://github.com/kubernetes/enhancements/pull/1351)
    
    ## Known Issues
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
Back to top