mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
380 B
Go
24 lines
380 B
Go
package sync
|
|
|
|
import "time"
|
|
|
|
type Options struct {
|
|
Interval time.Duration
|
|
URL string
|
|
Name string
|
|
Namespace string
|
|
Branch string
|
|
TargetPath string
|
|
}
|
|
|
|
func MakeDefaultOptions() Options {
|
|
return Options{
|
|
Interval: 1 * time.Minute,
|
|
URL: "",
|
|
Name: "gotk-system",
|
|
Namespace: "gotk-system",
|
|
Branch: "main",
|
|
TargetPath: "",
|
|
}
|
|
}
|