-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for oidc auth on Kubernetes
Symptoms: ``` kubectl trace run $NODE_NAME -e "tracepoint:syscalls:sys_enter_* { @[probe] = count(); }" Error: No Auth Provider found for name "oidc" ``` The client/auth/oidc pkg in client-go is not vendored. This patch adds the blank import and I let 'make' update go.mod and go.sum. However, I still have errors (with go1.11.4): ``` go: finding github.com/emicklei/go-restful/log latest ../../go/pkg/mod/github.com/emicklei/[email protected]+incompatible/container.go:17:2: unknown import path "github.com/emicklei/go-restful/log": cannot find module providing package github.com/emicklei/go-restful/log make: *** [Makefile:30: _output/bin/kubectl-trace] Error 1 ``` Signed-off-by: Alban Crequy <[email protected]>
- Loading branch information
Showing
3 changed files
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters