fluxcd-flux2/cmd/tk/sync.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
178 B
Go

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