mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-25 09:01:48 +00:00
Remove GitImplementation default
As the field in the CRD is optional. Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
6396b25886
commit
a260403334
2 changed files with 8 additions and 11 deletions
|
|
@ -171,7 +171,6 @@ func generateSyncManifests(url, branch, name, namespace, targetPath, tmpDir stri
|
||||||
Interval: interval,
|
Interval: interval,
|
||||||
TargetPath: targetPath,
|
TargetPath: targetPath,
|
||||||
ManifestFile: sync.MakeDefaultOptions().ManifestFile,
|
ManifestFile: sync.MakeDefaultOptions().ManifestFile,
|
||||||
GitImplementation: sync.MakeDefaultOptions().GitImplementation,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
manifest, err := sync.Generate(opts)
|
manifest, err := sync.Generate(opts)
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,6 @@ package sync
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
sourcev1 "github.com/fluxcd/source-controller/api/v1beta1"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Options struct {
|
type Options struct {
|
||||||
|
|
@ -42,6 +40,6 @@ func MakeDefaultOptions() Options {
|
||||||
Branch: "main",
|
Branch: "main",
|
||||||
ManifestFile: "gotk-sync.yaml",
|
ManifestFile: "gotk-sync.yaml",
|
||||||
TargetPath: "",
|
TargetPath: "",
|
||||||
GitImplementation: sourcev1.GoGitImplementation,
|
GitImplementation: "",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue