Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for eventBurst (0.2 sec)

  1. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

    enableDebugFlagsHandler: true
    enableDebuggingHandlers: true
    enableProfilingHandler: true
    enableServer: true
    enableSystemLogHandler: true
    enableSystemLogQuery: false
    enforceNodeAllocatable:
    - pods
    eventBurst: 10
    eventRecordQPS: 5
    evictionPressureTransitionPeriod: 5m0s
    failSwapOn: true
    fileCheckFrequency: 20s
    hairpinMode: promiscuous-bridge
    healthzBindAddress: 127.0.0.1
    healthzPort: 10248
    httpCheckFrequency: 20s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    enableDebugFlagsHandler: true
    enableDebuggingHandlers: true
    enableProfilingHandler: true
    enableServer: true
    enableSystemLogHandler: true
    enableSystemLogQuery: false
    enforceNodeAllocatable:
    - pods
    eventBurst: 100
    eventRecordQPS: 50
    evictionPressureTransitionPeriod: 5m0s
    failSwapOn: true
    fileCheckFrequency: 20s
    hairpinMode: promiscuous-bridge
    healthzBindAddress: 127.0.0.1
    healthzPort: 10248
    httpCheckFrequency: 20s
    L46
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    					},
    				},
    				RegistryPullQPS:                           utilpointer.Int32(5),
    				RegistryBurst:                             10,
    				EventRecordQPS:                            utilpointer.Int32(50),
    				EventBurst:                                100,
    				EnableDebuggingHandlers:                   utilpointer.Bool(true),
    				HealthzPort:                               utilpointer.Int32(10248),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/v1beta1/defaults.go

    		obj.RegistryPullQPS = utilpointer.Int32(5)
    	}
    	if obj.RegistryBurst == 0 {
    		obj.RegistryBurst = 10
    	}
    	if obj.EventRecordQPS == nil {
    		obj.EventRecordQPS = utilpointer.Int32(50)
    	}
    	if obj.EventBurst == 0 {
    		obj.EventBurst = 100
    	}
    	if obj.EnableDebuggingHandlers == nil {
    		obj.EnableDebuggingHandlers = utilpointer.Bool(true)
    	}
    	if obj.HealthzPort == nil {
    		obj.HealthzPort = utilpointer.Int32(10248)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.Address = "0.0.0.0"
    			obj.VolumeStatsAggPeriod = metav1.Duration{Duration: time.Minute}
    			obj.RuntimeRequestTimeout = metav1.Duration{Duration: 2 * time.Minute}
    			obj.CPUCFSQuota = true
    			obj.EventBurst = 10
    			obj.EventRecordQPS = 5
    			obj.EnableControllerAttachDetach = true
    			obj.EnableDebuggingHandlers = true
    			obj.EnableSystemLogQuery = false
    			obj.FileCheckFrequency = metav1.Duration{Duration: 20 * time.Second}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "invalid EventBurst",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.EventBurst = -1
    			return conf
    		},
    		errMsg: "invalid configuration: eventBurst (--event-burst) -1 must not be a negative number",
    	}, {
    		name: "invalid EventRecordQPS",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/validation/validation.go

    	}
    	if kc.EventBurst < 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: eventBurst (--event-burst) %v must not be a negative number", kc.EventBurst))
    	}
    	if kc.EventRecordQPS < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	out.RegistryBurst = in.RegistryBurst
    	if err := v1.Convert_Pointer_int32_To_int32(&in.EventRecordQPS, &out.EventRecordQPS, s); err != nil {
    		return err
    	}
    	out.EventBurst = in.EventBurst
    	if err := v1.Convert_Pointer_bool_To_bool(&in.EnableDebuggingHandlers, &out.EnableDebuggingHandlers, s); err != nil {
    		return err
    	}
    	out.EnableContentionProfiling = in.EnableContentionProfiling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kubelet/apis/config/types.go

    	// is no limit enforced.
    	EventRecordQPS int32
    	// eventBurst is the maximum size of a burst of event creations, temporarily
    	// allows event creations to burst to this number, while still not exceeding
    	// eventRecordQPS. Only used if eventRecordQPS > 0.
    	EventBurst int32
    	// enableDebuggingHandlers enables server endpoints for log collection
    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