Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for StaticPodPath (0.14 sec)

  1. 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)
  2. pkg/kubelet/apis/config/types.go

    	// enableServer enables Kubelet's secured server.
    	// Note: Kubelet's insecure port is controlled by the readOnlyPort option.
    	EnableServer bool
    	// staticPodPath is the path to the directory containing local (static) pods to
    	// run, or the path to a single static pod file.
    	StaticPodPath string
    	// podLogsDir is a custom root directory path kubelet will use to place pod's log files.
    	// Default: "/var/log/pods/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. 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)
Back to top