mirror of https://github.com/k3s-io/k3s
Fix typos like limitting
parent
8f7405ec92
commit
3c055aa4b4
|
@ -5,7 +5,7 @@ go_library(
|
|||
srcs = [
|
||||
"doc.go",
|
||||
"horizontal.go",
|
||||
"rate_limitters.go",
|
||||
"rate_limiters.go",
|
||||
"replica_calculator.go",
|
||||
],
|
||||
importpath = "k8s.io/kubernetes/pkg/controller/podautoscaler",
|
||||
|
|
|
@ -179,7 +179,7 @@ func (a *HorizontalController) enqueueHPA(obj interface{}) {
|
|||
return
|
||||
}
|
||||
|
||||
// always add rate-limitted so we don't fetch metrics more that once per resync interval
|
||||
// always add rate-limited so we don't fetch metrics more that once per resync interval
|
||||
a.queue.AddRateLimited(key)
|
||||
}
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ func (r *FixedItemIntervalRateLimiter) NumRequeues(item interface{}) int {
|
|||
func (r *FixedItemIntervalRateLimiter) Forget(item interface{}) {
|
||||
}
|
||||
|
||||
// NewDefaultHPARateLimiter creates a rate limitter which limits overall (as per the
|
||||
// NewDefaultHPARateLimiter creates a rate limiter which limits overall (as per the
|
||||
// default controller rate limiter), as well as per the resync interval
|
||||
func NewDefaultHPARateLimiter(interval time.Duration) workqueue.RateLimiter {
|
||||
return NewFixedItemIntervalRateLimiter(interval)
|
|
@ -46,7 +46,7 @@ func NewCmdConfig(f cmdutil.Factory, pathOptions *clientcmd.PathOptions, streams
|
|||
The loading order follows these rules:
|
||||
|
||||
1. If the --` + pathOptions.ExplicitFileFlag + ` flag is set, then only that file is loaded. The flag may only be set once and no merging takes place.
|
||||
2. If $` + pathOptions.EnvVar + ` environment variable is set, then it is used as a list of paths (normal path delimitting rules for your system). These paths are merged. When a value is modified, it is modified in the file that defines the stanza. When a value is created, it is created in the first file that exists. If no files in the chain exist, then it creates the last file in the list.
|
||||
2. If $` + pathOptions.EnvVar + ` environment variable is set, then it is used as a list of paths (normal path delimiting rules for your system). These paths are merged. When a value is modified, it is modified in the file that defines the stanza. When a value is created, it is created in the first file that exists. If no files in the chain exist, then it creates the last file in the list.
|
||||
3. Otherwise, ` + path.Join("${HOME}", pathOptions.GlobalFileSubpath) + ` is used and no merging takes place.`),
|
||||
Run: cmdutil.DefaultSubCommandRun(streams.ErrOut),
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ go_test(
|
|||
"delaying_queue_test.go",
|
||||
"metrics_test.go",
|
||||
"queue_test.go",
|
||||
"rate_limitting_queue_test.go",
|
||||
"rate_limiting_queue_test.go",
|
||||
],
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
|
@ -31,7 +31,7 @@ go_library(
|
|||
"metrics.go",
|
||||
"parallelizer.go",
|
||||
"queue.go",
|
||||
"rate_limitting_queue.go",
|
||||
"rate_limiting_queue.go",
|
||||
],
|
||||
importmap = "k8s.io/kubernetes/vendor/k8s.io/client-go/util/workqueue",
|
||||
importpath = "k8s.io/client-go/util/workqueue",
|
||||
|
|
|
@ -35,7 +35,7 @@ type RateLimiter interface {
|
|||
}
|
||||
|
||||
// DefaultControllerRateLimiter is a no-arg constructor for a default rate limiter for a workqueue. It has
|
||||
// both overall and per-item rate limitting. The overall is a token bucket and the per-item is exponential
|
||||
// both overall and per-item rate limiting. The overall is a token bucket and the per-item is exponential
|
||||
func DefaultControllerRateLimiter() RateLimiter {
|
||||
return NewMaxOfRateLimiter(
|
||||
NewItemExponentialFailureRateLimiter(5*time.Millisecond, 1000*time.Second),
|
||||
|
|
Loading…
Reference in New Issue