fluxcd-flux2/cmd/tk/sync_source.go
stefanprodan 21e0d38152 Implement sync command
- sync git sources
- sync kustomizations along with their sources
2020-04-29 08:50:27 +03:00

14 lines
199 B
Go

package main
import (
"github.com/spf13/cobra"
)
var syncSourceCmd = &cobra.Command{
Use: "source",
Short: "Synchronize source commands",
}
func init() {
syncCmd.AddCommand(syncSourceCmd)
}