Skip to content

Commit

Permalink
Add gke
Browse files Browse the repository at this point in the history
  • Loading branch information
marccampbell committed Aug 15, 2019
1 parent c6da43b commit 3b1428a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion cmd/preflight/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package main

import "github.com/replicatedhq/troubleshoot/cmd/preflight/cli"
import (
"github.com/replicatedhq/troubleshoot/cmd/preflight/cli"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
)

func main() {
cli.InitAndExecute()
Expand Down
5 changes: 4 additions & 1 deletion cmd/troubleshoot/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package main

import "github.com/replicatedhq/troubleshoot/cmd/troubleshoot/cli"
import (
"github.com/replicatedhq/troubleshoot/cmd/troubleshoot/cli"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
)

func main() {
cli.InitAndExecute()
Expand Down

0 comments on commit 3b1428a

Please sign in to comment.