Skip to content

Commit

Permalink
update old krew template
Browse files Browse the repository at this point in the history
  • Loading branch information
keisku committed Jan 14, 2022
1 parent 7e1df52 commit 4326bf3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
10 changes: 3 additions & 7 deletions .krew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,10 @@ metadata:
spec:
version: {{ .TagName }}
homepage: https://github.com/kei6u/kubectl-secretdata
shortDescription: A kubectl plugin for finding decoded secret data with productive search flags
shortDescription: Viewing decoded Secret data with search flags
description: |
This is a kubectl plugin for finding decoded secret data.
Since kubectl outputs base64-encoded secrets basically,
it makes it difficult to check the secret value.
And searching secrets also is difficult. This tool helps
verify the real secret value and find the secrets
you want with productive search flags.
This plugin provides functions to view decoded Secret data and helpful flags
such as regular expression, selecting multiple namespaces, label selectors, etc.
platforms:
- selector:
matchLabels:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,23 +85,23 @@ Download the binary from [GitHub Releases](https://github.com/kei6u/kubectl-secr
#### Linux

```shell
curl -L -o kubectl-secretdata.tar.gz https://github.com/kei6u/kubectl-secretdata/releases/download/v1.0.3/kubectl-secretdata_v1.0.3_linux_amd64.tar.gz
curl -L -o kubectl-secretdata.tar.gz https://github.com/kei6u/kubectl-secretdata/releases/download/v1.0.4/kubectl-secretdata_v1.0.4_linux_amd64.tar.gz
tar -xvf kubectl-secretdata.tar.gz
sudo mv kubectl-secretdata /usr/local/bin
```

#### Darwin(amd64)

```shell
curl -L -o kubectl-secretdata.tar.gz https://github.com/kei6u/kubectl-secretdata/releases/download/v1.0.3/kubectl-secretdata_v1.0.3_darwin_amd64.tar.gz
curl -L -o kubectl-secretdata.tar.gz https://github.com/kei6u/kubectl-secretdata/releases/download/v1.0.4/kubectl-secretdata_v1.0.4_darwin_amd64.tar.gz
tar -xvf kubectl-secretdata.tar.gz
sudo mv kubectl-secretdata /usr/local/bin
```

#### Darwin(arm64)

```shell
curl -L -o kubectl-secretdata.tar.gz https://github.com/kei6u/kubectl-secretdata/releases/download/v1.0.3/kubectl-secretdata_v1.0.3_darwin_arm64.tar.gz
curl -L -o kubectl-secretdata.tar.gz https://github.com/kei6u/kubectl-secretdata/releases/download/v1.0.4/kubectl-secretdata_v1.0.4_darwin_arm64.tar.gz
tar -xvf kubectl-secretdata.tar.gz
sudo mv kubectl-secretdata /usr/local/bin
```
Expand Down

0 comments on commit 4326bf3

Please sign in to comment.