Release. 0.1.0
The very first release.
It includes the k
alias for kubectl
which is complemented by fzf
to make kubectl
more interactive and easy to use.
Available commands:
- k get
- k logs
- k explain
- k config use-context
- k config set ns
Everything you see as an output of the k alias is wrapped with fzf
. The most patterns and key combinations.
Search patterns:
fzf
starts in "extended-search mode" where you can
type in multiple search terms delimited by spaces. e.g. ^music .mp3$ sbtrkt !fire
Token | Match type | Description |
---|---|---|
sbtrkt |
fuzzy-match | Items that match sbtrkt |
'wild |
exact-match (quoted) | Items that include wild |
^music |
prefix-exact-match | Items that start with music |
.mp3$ |
suffix-exact-match | Items that end with .mp3 |
!fire |
inverse-exact-match | Items that do not include fire |
!^music |
inverse-prefix-exact-match | Items that do not start with music |
!.mp3$ |
inverse-suffix-exact-match | Items that do not end with .mp3 |
Key combination:
- ESC - exit
- Ctrl+r - reload
- Shift + up/down - scroll the right panel
- Ctrl+/ - change size of the right panel