Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RegistryBurst (0.15 sec)

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

    	}, {
    		name: "invalid RegistryBurst",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.RegistryBurst = -1
    			return conf
    		},
    		errMsg: "invalid configuration: registryBurst (--registry-burst) -1 must not be a negative number",
    	}, {
    		name: "invalid RegistryPullQPS",
    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

    	}
    	if kc.RegistryBurst < 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: registryBurst (--registry-burst) %v must not be a negative number", kc.RegistryBurst))
    	}
    	if kc.RegistryPullQPS < 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)
  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

    	// registryPullQPS is the limit of registry pulls per second.
    	// Set to 0 for no limit.
    	RegistryPullQPS int32
    	// registryBurst is the maximum size of bursty pulls, temporarily allows
    	// pulls to burst to this number, while still not exceeding registryPullQPS.
    	// Only used if registryPullQPS > 0.
    	RegistryBurst int32
    	// eventRecordQPS is the maximum event creations per second. If 0, there
    	// is no limit enforced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&c.RegistryPullQPS, "registry-qps", c.RegistryPullQPS, "If > 0, limit registry pull QPS to this value.  If 0, unlimited.")
    	fs.Int32Var(&c.RegistryBurst, "registry-burst", c.RegistryBurst, "Maximum size of a bursty pulls, temporarily allows pulls to burst to this number, while still not exceeding registry-qps. Only used if --registry-qps > 0")
    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