kube-fetcher/cmd/fetcher/config.go
Erik Brakkee b31e03bc7a Initial pull implemented.
Support for proxy repositories by pulling from the proxy and then tagging the image.
2025-03-09 14:18:29 +01:00

17 lines
390 B
Go

package main
import "time"
type Config struct {
InitialPullAll bool
PollInterval time.Duration
KubernetesNamespace string
SocketPath string
ContainerdNamespace string
Nodename string
ReadyDuration time.Duration
includeControllerNodes bool
monitoringWindowSize time.Duration
mirrors map[string]string
}