├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yaml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── kubectl-view_serviceaccount_kubeconfig.go ├── go.mod ├── go.sum └── pkg └── cmd ├── util.go ├── util_test.go ├── view-serviceaccount-kubeconfig.go └── view-serviceaccount-kubeconfig_test.go /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /hack/tools/bin 3 | -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/README.md -------------------------------------------------------------------------------- /cmd/kubectl-view_serviceaccount_kubeconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/cmd/kubectl-view_serviceaccount_kubeconfig.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/cmd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/pkg/cmd/util.go -------------------------------------------------------------------------------- /pkg/cmd/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/pkg/cmd/util_test.go -------------------------------------------------------------------------------- /pkg/cmd/view-serviceaccount-kubeconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/pkg/cmd/view-serviceaccount-kubeconfig.go -------------------------------------------------------------------------------- /pkg/cmd/view-serviceaccount-kubeconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superbrothers/kubectl-view-serviceaccount-kubeconfig-plugin/HEAD/pkg/cmd/view-serviceaccount-kubeconfig_test.go --------------------------------------------------------------------------------