diff --git a/pkg/manifestgen/sync/options.go b/pkg/manifestgen/sync/options.go index 93b37acc..4fb5955a 100644 --- a/pkg/manifestgen/sync/options.go +++ b/pkg/manifestgen/sync/options.go @@ -16,7 +16,11 @@ limitations under the License. package sync -import "time" +import ( + "time" + + sourcev1 "github.com/fluxcd/source-controller/api/v1beta1" +) type Options struct { Interval time.Duration @@ -38,6 +42,6 @@ func MakeDefaultOptions() Options { Branch: "main", ManifestFile: "gotk-sync.yaml", TargetPath: "", - GitImplementation: "go-git", + GitImplementation: sourcev1.GoGitImplementation, } }