k8s oidc助手包存在问题(k8s-oidc-helper: 命令未找到)

huangapple go评论80阅读模式
英文:

k8s oidc issues with helper package (k8s-oidc-helper: command not found)

问题

我在使用安装了go的k8s-oidc-helper包时遇到了问题。然而,当我运行其中的任何命令时,它都会显示“command not found”错误。我在Ubuntu 16.04虚拟机上运行此命令。我该如何解决这个问题?

英文:

I am facing issues with k8s-oidc-helper package installed with go. However when i run any of the commands with it it gives command not found error. I am running this on ubuntu 16.04 VM. How can i resolve this?

答案1

得分: 0

我已解决了这个问题。go 的路径设置不正确。
我检查了 go 的环境,并相应地设置了路径。

export GOPATH=/usr/lib/go
export PATH=$PATH:$GOPATH/bin
sudo go get -u github.com/micahhausler/k8s-oidc-helper

现在助手包可以正常工作了。

英文:

I have resolved this issue. The path set was incorrect for `go'
I checked the environment of go and accordingly set the path.

export GOPATH=/usr/lib/go
export PATH=$PATH:$GOPATH/bin
sudo go get -u github.com/micahhausler/k8s-oidc-helper

now the helper package works

huangapple
  • 本文由 发表于 2017年8月2日 14:10:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/45452729.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定