kubectl-fuzzy
This tool uses fzf(1)-like fuzzy-finder to do partial or fuzzy search of Kubernetes resources. Instead of specifying full resource names to kubectl commands, you can choose them from an interactive list that you can filter by typing a few characters.
File Explorer
Download Latest Version (.zip)- goreleaser.yaml
- main.yaml
- dependabot.yml
- RELEASE_NOTE_TEMPALTE.md
- main.go
- kubectl-fuzzy.gif
- preview.jpg
- commands.md
- create.go
- create_job.go
- delete.go
- describe.go
- exec.go
- logs.go
- root.go
- version.go
- fuzzyfinder.go
- kubernetes.go
- simplify.go
- .gitignore
- .goreleaser.yaml
- CHANGELOG.md
- go.mod
- go.sum
- LICENSE
- Makefile
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/d-kuro/kubectl-fuzzy
Downloads the entire project code from GitHub to your computer.
cd kubectl-fuzzy
Moves into the project folder you just downloaded.
2. Go
Medium RecommendedPrerequisites
go build ./...
Compiles the Go program into an executable.
go run .
Runs the Go program directly without a separate build step.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
3. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make install
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
