Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StaticPodPath (0.25 sec)

  1. pkg/kubelet/kubelet.go

    	// TODO:  it needs to be replaced by a proper context in the future
    	ctx := context.TODO()
    
    	// define file config source
    	if kubeCfg.StaticPodPath != "" {
    		klog.InfoS("Adding static pod path", "path", kubeCfg.StaticPodPath)
    		config.NewSourceFile(kubeCfg.StaticPodPath, nodeName, kubeCfg.FileCheckFrequency.Duration, cfg.Channel(ctx, kubetypes.FileSource))
    	}
    
    	// define url config source
    	if kubeCfg.StaticPodURL != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      fi
    }
    
    # cat the Kubelet config yaml for masters
    function print-master-kubelet-config {
      cat <<EOF
    enableDebuggingHandlers: ${MASTER_KUBELET_ENABLE_DEBUGGING_HANDLERS:-false}
    hairpinMode: none
    staticPodPath: /etc/kubernetes/manifests
    authentication:
      webhook:
        enabled: false
      anonymous:
        enabled: true
    authorization:
      mode: AlwaysAllow
    EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top