Skip to content

Commit 3f48574

Browse files
authored
Add all auth providers (#266)
* Update main.go * Adding generic auth for OIDC
1 parent 4149e4d commit 3f48574

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/analyze/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"github.com/replicatedhq/troubleshoot/cmd/analyze/cli"
5-
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
5+
_ "k8s.io/client-go/plugin/pkg/client/auth"
66
)
77

88
func main() {

cmd/preflight/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"github.com/replicatedhq/troubleshoot/cmd/preflight/cli"
5-
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
5+
_ "k8s.io/client-go/plugin/pkg/client/auth"
66
)
77

88
func main() {

cmd/troubleshoot/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"github.com/replicatedhq/troubleshoot/cmd/troubleshoot/cli"
5-
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
5+
_ "k8s.io/client-go/plugin/pkg/client/auth"
66
)
77

88
func main() {

0 commit comments

Comments
 (0)