fluxcd-flux2/cmd/tk/export_source.go
stefanprodan f127adc8ea Implement export to YAML
- add export commands for git sources and kustomizations
- add export e2e tests
2020-04-30 00:12:16 +03:00

14 lines
200 B
Go

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