mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-04-04 07:48:48 +02:00
* add values example and gcp support Signed-off-by: pashavictorovich <pavel@codefresh.io> * add values example and gcp support Signed-off-by: pashavictorovich <pavel@codefresh.io>
19 lines
356 B
Go
19 lines
356 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/argoproj/argo-cd/v2/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)
|
|
}
|
|
}
|