mirror of https://github.com/k3s-io/k3s
kube-aggregator: bump openapi aggregation log level
parent
a9f35a67c8
commit
c3f272f024
|
@ -99,7 +99,13 @@ func (c *AggregationController) processNextWorkItem() bool {
|
||||||
return false
|
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))
|
action, err := c.syncHandler(key.(string))
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
|
Loading…
Reference in New Issue