https://github.com/ishantanu/kubectl-unbound-pvc
A kubectl plugint to see PVCs which are not in "Bound" state
https://github.com/ishantanu/kubectl-unbound-pvc
kubectl kubectl-plugins
Last synced: 14 days ago
JSON representation
A kubectl plugint to see PVCs which are not in "Bound" state
- Host: GitHub
- URL: https://github.com/ishantanu/kubectl-unbound-pvc
- Owner: ishantanu
- License: apache-2.0
- Created: 2019-11-26T16:09:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-28T10:03:00.000Z (over 5 years ago)
- Last Synced: 2024-08-02T06:13:01.721Z (9 months ago)
- Topics: kubectl, kubectl-plugins
- Language: Shell
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-kubectl-plugins - kubectl-unbound-pvc - unbound-pvc)](https://github.com/ishantanu/kubectl-unbound-pvc/stargazers) | (kubectl Plugins / Installing plugins via awesome-kubectl-plugins)
README
# kubectl-unbound-pvc
A small plugin to list Persistent Volume Claims which are not in `Bound` state.
## Prerequisites
* jq## Installation
* Download the zip for the latest tag, for example:
```
wget https://github.com/ishantanu/kubectl-unbound-pvc/archive/v0.0.1.zip
```
* Unzip the downloaded file
```
unzip v0.0.1
```
* Move the `kubectl-unbound_pvc` binary from the `kubectl-unbound-pvc-0.0.1/` path and add it to your `$PATH`. For example:
```
mv kubectl-unbound-pvc-0.0.1/kubectl-unbound_pvc /usr/local/bin/
```
* Now, you can start using the plugin right away:
```
❯ kubectl unbound-pvc -l
NAME STATUS
task-pv-claim Pending
task-pv-claim1 Pending
```