kube-fetcher/cmd/fetcher/config.go

13 lines
243 B
Go

package main
import "time"
type Config struct {
KubernetesNamespace string
SocketPath string
ContainerdNamespace string
Nodename string
ReadyDuration time.Duration
includeControllerNodes bool
}