Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for PodLogsDir (0.54 sec)

  1. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	if err := v1.Convert_Pointer_bool_To_bool(&in.EnableServer, &out.EnableServer, s); err != nil {
    		return err
    	}
    	out.StaticPodPath = in.StaticPodPath
    	out.PodLogsDir = in.PodLogsDir
    	out.SyncFrequency = in.SyncFrequency
    	out.FileCheckFrequency = in.FileCheckFrequency
    	out.HTTPCheckFrequency = in.HTTPCheckFrequency
    	out.StaticPodURL = in.StaticPodURL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/apis/config/types.go

    	// 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/"
    	// Note: it is not recommended to use the temp folder as a log directory as it may cause
    	// unexpected behavior in many places.
    	PodLogsDir string
    	// syncFrequency is the max period between synchronizing running
    	// containers and config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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