13 lines
243 B
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
|
|
}
|