Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for containerLogMaxWorkers (0.36 sec)

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

    	}, {
    		name: "containerLogMaxWorkers must be greater than or equal to 1",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.ContainerLogMaxWorkers = 0
    			return conf
    		},
    		errMsg: "invalid configuration: containerLogMaxWorkers must be greater than or equal to 1",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/validation/validation.go

    		allErrors = append(allErrors,
    			fmt.Errorf("invalid configuration: enableSystemLogHandler is required for enableSystemLogQuery"))
    	}
    
    	if kc.ContainerLogMaxWorkers < 1 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: containerLogMaxWorkers must be greater than or equal to 1"))
    	}
    
    	if kc.ContainerLogMonitorInterval.Duration.Seconds() < 3 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/helpers_test.go

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

    	// Maximum number of container log files that can be present for a container.
    	ContainerLogMaxFiles int32
    	// Maximum number of concurrent log rotation workers to spawn for processing the log rotation
    	// requests
    	ContainerLogMaxWorkers int32
    	// Interval at which the container logs are monitored for rotation
    	ContainerLogMonitorInterval metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top