Skip to content

Commit 3b1428a

Browse files
committed
Add gke
1 parent c6da43b commit 3b1428a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

cmd/preflight/main.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package main
22

3-
import "github.com/replicatedhq/troubleshoot/cmd/preflight/cli"
3+
import (
4+
"github.com/replicatedhq/troubleshoot/cmd/preflight/cli"
5+
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
6+
)
47

58
func main() {
69
cli.InitAndExecute()

cmd/troubleshoot/main.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package main
22

3-
import "github.com/replicatedhq/troubleshoot/cmd/troubleshoot/cli"
3+
import (
4+
"github.com/replicatedhq/troubleshoot/cmd/troubleshoot/cli"
5+
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
6+
)
47

58
func main() {
69
cli.InitAndExecute()

0 commit comments

Comments
 (0)