1
0
Fork 0
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:
Igor Velichkovich 2025-01-04 11:36:13 -08:00
parent 00ecb012d6
commit 5162c2ebe5
2 changed files with 4 additions and 1 deletions

View file

@ -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)

View file

@ -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)