argo-cd/hack/gen-resources/cmd/main.go
github-actions[bot] 4d9835927d
Bump major version to 3 (#21410)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: crenshaw-dev <350466+crenshaw-dev@users.noreply.github.com>
2025-01-10 16:14:00 -05:00

18 lines
356 B
Go

package main
import (
"fmt"
"os"
"github.com/argoproj/argo-cd/v3/hack/gen-resources/cmd/commands"
// load the gcp plugin (required to authenticate against GKE clusters).
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
)
func main() {
command := commands.NewCommand()
if err := command.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}