mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-31 04:04:51 +00:00
add configurable pagination to nfd-gc
This commit is contained in:
parent
00ecb012d6
commit
5162c2ebe5
2 changed files with 4 additions and 1 deletions
|
@ -85,6 +85,8 @@ func initFlags(flagset *flag.FlagSet) *nfdgarbagecollector.Args {
|
|||
"Kubeconfig to use")
|
||||
flagset.IntVar(&args.MetricsPort, "metrics", 8081,
|
||||
"Port on which to expose metrics.")
|
||||
flagset.Int64Var(&args.ListSize, "list-size", 200,
|
||||
"the pagination size used when listing node features")
|
||||
|
||||
klog.InitFlags(flagset)
|
||||
|
||||
|
|
|
@ -49,6 +49,7 @@ type Args struct {
|
|||
GCPeriod time.Duration
|
||||
Kubeconfig string
|
||||
MetricsPort int
|
||||
ListSize int64
|
||||
}
|
||||
|
||||
type NfdGarbageCollector interface {
|
||||
|
@ -155,7 +156,7 @@ func (n *nfdGarbageCollector) garbageCollect() {
|
|||
|
||||
listAndHandle := func(gvr schema.GroupVersionResource, handler func(metav1.PartialObjectMetadata)) {
|
||||
opts := metav1.ListOptions{
|
||||
Limit: 200,
|
||||
Limit: n.args.ListSize,
|
||||
}
|
||||
for {
|
||||
rsp, err := n.client.Resource(gvr).List(context.TODO(), opts)
|
||||
|
|
Loading…
Add table
Reference in a new issue