A Vim/Neovim plugin for kubernetes
" Execute kubectl via terminal
" Bellow is Same as 'kubectl get pods -A'
:K8s get pods -A
" Show all pods
:K8sPods
" Show all nodes
:K8sNodes
" Show all depployments
:K8sDeployments
" Show all services
:K8sServices
" Show all secrets
:K8sSecrets
" Show all events
:K8sEvents
" Show pod list filterd by 'app=sample-pod' of label
:drop k8s://pods/list?labels=app=sample-pod
Also you can do some action(like show pod's logs, run shell in pod). Please see help for more details.
skanehira