mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-20 18:31:15 +00:00
Merge pull request #75781 from roycaihw/fix/openapi-aggregator-log
kube-aggregator: bump openapi aggregation log level for delegation targets
This commit is contained in:
commit
a0e71b49b6
@ -99,7 +99,13 @@ func (c *AggregationController) processNextWorkItem() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
klog.Infof("OpenAPI AggregationController: Processing item %s", key)
|
||||
if aggregator.IsLocalAPIService(key.(string)) {
|
||||
// for local delegation targets that are aggregated once per second, log at
|
||||
// higher level to avoid flooding the log
|
||||
klog.V(5).Infof("OpenAPI AggregationController: Processing item %s", key)
|
||||
} else {
|
||||
klog.Infof("OpenAPI AggregationController: Processing item %s", key)
|
||||
}
|
||||
|
||||
action, err := c.syncHandler(key.(string))
|
||||
if err == nil {
|
||||
|
Loading…
Reference in New Issue
Block a user