Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for StaticPodPath (0.37 sec)

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

    		kc.config.FeatureGates = map[string]bool{}
    	}
    
    	if kc.config.StaticPodPath == "" {
    		kc.config.StaticPodPath = kubeadmapiv1.DefaultManifestsDir
    	} else if kc.config.StaticPodPath != kubeadmapiv1.DefaultManifestsDir {
    		warnDefaultComponentConfigValue(kind, "staticPodPath", kubeadmapiv1.DefaultManifestsDir, kc.config.StaticPodPath)
    	}
    
    	clusterDNS := ""
    	dnsIP, err := constants.GetDNSIP(cfg.Networking.ServiceSubnet)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/kubemark/hollow_kubelet.go

    	c.StaticPodURL = ""
    	c.EnableServer = true
    	c.Address = "0.0.0.0" /* bind address */
    	c.Port = int32(opt.KubeletPort)
    	c.ReadOnlyPort = int32(opt.KubeletReadOnlyPort)
    	c.StaticPodPath = podFilePath
    	c.FileCheckFrequency.Duration = 20 * time.Second
    	c.HTTPCheckFrequency.Duration = 20 * time.Second
    	c.NodeStatusUpdateFrequency.Duration = 10 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/helpers_test.go

    		}
    	}
    }
    
    var (
    	// KubeletConfiguration fields that contain file paths. If you update this, also update KubeletConfigurationPathRefs!
    	kubeletConfigurationPathFieldPaths = sets.New[string](
    		"StaticPodPath",
    		"Authentication.X509.ClientCAFile",
    		"TLSCertFile",
    		"TLSPrivateKeyFile",
    		"ResolverConfig",
    		"PodLogsDir",
    	)
    
    	// KubeletConfiguration fields that do not contain file paths.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.FailSwapOn, "fail-swap-on", c.FailSwapOn, "Makes the Kubelet fail to start if swap is enabled on the node. ")
    	fs.StringVar(&c.StaticPodPath, "pod-manifest-path", c.StaticPodPath, "Path to the directory containing static pod files to run, or the path to a single static pod file. Files starting with dots will be ignored.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. 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)
  6. hack/local-up-cluster.sh

    failSwapOn: ${FAIL_SWAP_ON}
    port: ${KUBELET_PORT}
    readOnlyPort: ${KUBELET_READ_ONLY_PORT}
    rotateCertificates: true
    runtimeRequestTimeout: "${RUNTIME_REQUEST_TIMEOUT}"
    staticPodPath: "${POD_MANIFEST_PATH}"
    resolvConf: "${KUBELET_RESOLV_CONF}"
    EOF
    
      if [[ "$ENABLE_TRACING" = true ]]; then
            cat <<EOF >> "${TMP_DIR}"/kubelet.yaml
    tracing:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. 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)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"staticPodPath": {
    						SchemaProps: spec.SchemaProps{
    							Description: "staticPodPath is the path to the directory containing local (static) pods to run, or the path to a single static pod file. Default: \"\"",
    							Type:        []string{"string"},
    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