Skip to content

Commit

Permalink
Add kubectl-passman @ 0.0.1 to krew index (#267)
Browse files Browse the repository at this point in the history
* add passman 0.0.1 to krew index

* updated manifest with reduced arch/os binaries to match what krew validates manifest to

* respond to ahmetb's PR comments
  • Loading branch information
chrisns authored and k8s-ci-robot committed Oct 7, 2019
1 parent bb06a30 commit 16a4a08
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins.md
Expand Up @@ -42,6 +42,7 @@ Name | Description | Stars
[oidc-login](https://github.com/int128/kubelogin) | Log in to the OpenID Connect provider | ![GitHub stars](https://img.shields.io/github/stars/int128/kubelogin.svg?label=stars&logo=github) [oidc-login](https://github.com/int128/kubelogin) | Log in to the OpenID Connect provider | ![GitHub stars](https://img.shields.io/github/stars/int128/kubelogin.svg?label=stars&logo=github)
[open-svc](https://github.com/superbrothers/kubectl-open-svc-plugin) | Open the Kubernetes URL(s) for the specified service in your browser. | ![GitHub stars](https://img.shields.io/github/stars/superbrothers/kubectl-open-svc-plugin.svg?label=stars&logo=github) [open-svc](https://github.com/superbrothers/kubectl-open-svc-plugin) | Open the Kubernetes URL(s) for the specified service in your browser. | ![GitHub stars](https://img.shields.io/github/stars/superbrothers/kubectl-open-svc-plugin.svg?label=stars&logo=github)
[outdated](https://github.com/replicatedhq/outdated) | Finds outdated container images running in a cluster | ![GitHub stars](https://img.shields.io/github/stars/replicatedhq/outdated.svg?label=stars&logo=github) [outdated](https://github.com/replicatedhq/outdated) | Finds outdated container images running in a cluster | ![GitHub stars](https://img.shields.io/github/stars/replicatedhq/outdated.svg?label=stars&logo=github)
[passman](https://github.com/chrisns/kubectl-passman) | Provides glue between common password managers and kubectl for user credentials | ![GitHub stars](https://img.shields.io/github/stars/chrisns/kubectl-passman.svg?label=stars&logo=github)
[pod-logs](https://github.com/danisla/kubefunc) | Display a list of pods to get logs from | ![GitHub stars](https://img.shields.io/github/stars/danisla/kubefunc.svg?label=stars&logo=github) [pod-logs](https://github.com/danisla/kubefunc) | Display a list of pods to get logs from | ![GitHub stars](https://img.shields.io/github/stars/danisla/kubefunc.svg?label=stars&logo=github)
[pod-shell](https://github.com/danisla/kubefunc) | Display a list of pods to execute a shell in | ![GitHub stars](https://img.shields.io/github/stars/danisla/kubefunc.svg?label=stars&logo=github) [pod-shell](https://github.com/danisla/kubefunc) | Display a list of pods to execute a shell in | ![GitHub stars](https://img.shields.io/github/stars/danisla/kubefunc.svg?label=stars&logo=github)
[preflight](https://github.com/replicatedhq/troubleshoot) | Executes application preflight tests in a cluster | ![GitHub stars](https://img.shields.io/github/stars/replicatedhq/troubleshoot.svg?label=stars&logo=github) [preflight](https://github.com/replicatedhq/troubleshoot) | Executes application preflight tests in a cluster | ![GitHub stars](https://img.shields.io/github/stars/replicatedhq/troubleshoot.svg?label=stars&logo=github)
Expand Down
92 changes: 92 additions & 0 deletions plugins/passman.yaml
@@ -0,0 +1,92 @@
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: passman
spec:
version: "v0.0.1"
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
uri: https://github.com/chrisns/kubectl-passman/releases/download/v0.0.1/kubectl-passman-darwin-amd64.zip
sha256: "ffe6be7421c61edb276ae7614de78af63d72ce94d42a77a0d94f8b8964f711ff"
bin: "./kubectl-passman"
files:
- from: kubectl-passman-darwin-amd64
to: kubectl-passman

- selector:
matchLabels:
os: darwin
arch: 386
uri: https://github.com/chrisns/kubectl-passman/releases/download/v0.0.1/kubectl-passman-darwin-386.zip
sha256: "2fc8a0b9b2194b481058f03c95ccb4bf24b5723876fd53f2060cb689762c4a2b"
bin: "./kubectl-passman"
files:
- from: kubectl-passman-darwin-386
to: kubectl-passman

- selector:
matchLabels:
os: linux
arch: arm
uri: https://github.com/chrisns/kubectl-passman/releases/download/v0.0.1/kubectl-passman-linux-arm.zip
sha256: "0a585b190cd5b5d912cd25ac9cf43f3d7e418eef86678c0d22de8ce9c66dacf2"
bin: "./kubectl-passman"
files:
- from: kubectl-passman-linux-arm
to: kubectl-passman

- selector:
matchLabels:
os: linux
arch: 386
uri: https://github.com/chrisns/kubectl-passman/releases/download/v0.0.1/kubectl-passman-linux-386.zip
sha256: "09b4a95f8374935b2d21196b990b836b052ce86d11ae34e8f15233b1e871f050"
bin: "./kubectl-passman"
files:
- from: kubectl-passman-linux-386
to: kubectl-passman

- selector:
matchLabels:
os: linux
arch: amd64
uri: https://github.com/chrisns/kubectl-passman/releases/download/v0.0.1/kubectl-passman-linux-amd64.zip
sha256: "110ddc8cf4d9d962c6990ab42af4ffd7e93567bd95388f988576c50d29c702e2"
bin: "./kubectl-passman"
files:
- from: kubectl-passman-linux-amd64
to: kubectl-passman

- selector:
matchLabels:
os: windows
arch: amd64
uri: https://github.com/chrisns/kubectl-passman/releases/download/v0.0.1/kubectl-passman-windows-amd64.zip
sha256: "31c9603fdc5905017a7deb8308d906d26842db01b4c3442f3c675b905cdd5703"
bin: "./kubectl-passman.exe"
files:
- from: kubectl-passman-windows-amd64.exe
to: kubectl-passman.exe

- selector:
matchLabels:
os: windows
arch: 386
uri: https://github.com/chrisns/kubectl-passman/releases/download/v0.0.1/kubectl-passman-windows-386.zip
sha256: "5adaa33ab1ed6fbaa063bb56e937c7ec0d3e7c93e8a5a42985cc4c84bb912320"
bin: "./kubectl-passman.exe"
files:
- from: kubectl-passman-windows-386.exe
to: kubectl-passman.exe

shortDescription: Store kubeconfig credentials in keychains or password managers
homepage: https://github.com/chrisns/kubectl-passman
caveats: |
This plugin needs a usable keychain or password manager
See usage docs https://github.com/chrisns/kubectl-passman
description: |
An easy way to store your kubernetes credentials in 1password or Mac OS Keychain
(more password managers coming soon)

0 comments on commit 16a4a08

Please sign in to comment.