Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PodLogsDir (0.22 sec)

  1. pkg/kubelet/apis/config/validation/validation.go

    	}
    
    	if kc.PodLogsDir == "" {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: podLogsDir was not specified"))
    	}
    
    	if !utilfs.IsAbs(kc.PodLogsDir) {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: pod logs path %q must be absolute path", kc.PodLogsDir))
    	}
    
    	if !utilfs.IsPathClean(kc.PodLogsDir) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers.go

    func BuildContainerLogsDirectory(podLogsDir, podNamespace, podName string, podUID types.UID, containerName string) string {
    	return filepath.Join(BuildPodLogsDirectory(podLogsDir, podNamespace, podName, podUID), containerName)
    }
    
    // BuildPodLogsDirectory builds absolute log directory path for a pod sandbox.
    func BuildPodLogsDirectory(podLogsDir, podNamespace, podName string, podUID types.UID) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. pkg/kubemark/hollow_kubelet.go

    	c.SerializeImagePulls = true
    	c.SystemCgroups = ""
    	c.ProtectKernelDefaults = false
    	c.RegisterWithTaints = opt.RegisterWithTaints
    	c.RegisterNode = true
    	c.LocalStorageCapacityIsolation = true
    	c.PodLogsDir = podLogsPath
    
    	return f, c
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers_test.go

    	kubeletConfigurationPathFieldPaths = sets.New[string](
    		"StaticPodPath",
    		"Authentication.X509.ClientCAFile",
    		"TLSCertFile",
    		"TLSPrivateKeyFile",
    		"ResolverConfig",
    		"PodLogsDir",
    	)
    
    	// KubeletConfiguration fields that do not contain file paths.
    	kubeletConfigurationNonPathFieldPaths = sets.New[string](
    		"Address",
    		"AllowedUnsafeSysctls[*]",
    		"Authentication.Anonymous.Enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    		hostname,
    		hostnameOverridden,
    		nodeName,
    		nodeIPs,
    		kubeServer.ProviderID,
    		kubeServer.CloudProvider,
    		kubeServer.CertDirectory,
    		kubeServer.RootDirectory,
    		kubeServer.PodLogsDir,
    		kubeServer.ImageCredentialProviderConfigFile,
    		kubeServer.ImageCredentialProviderBinDir,
    		kubeServer.RegisterNode,
    		kubeServer.RegisterWithTaints,
    		kubeServer.AllowedUnsafeSysctls,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

       ([#123696](https://github.com/kubernetes/kubernetes/pull/123696), [@aramase](https://github.com/aramase))
    - kubelet allowed specifying a custom root directory for pod logs (instead of the default /var/log/pods) using the `podLogsDir` key in kubelet configuration.
       ([#112957](https://github.com/kubernetes/kubernetes/pull/112957), [@mxpv](https://github.com/mxpv))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"podLogsDir": {
    						SchemaProps: spec.SchemaProps{
    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