A magit-style interface to the Kubernetes command-line client.
This project is in early stages, but the following are implemented:
- Live-updating lists of kubernetes resources
- Viewing and deleting pods, configmaps and secrets
- Editing various Kubernetes resources like deployment, configmap, etc.
- Switching contexts and namespaces.
- Showing logs and exec'ing into containers
- Describing pods
Run M-x kubernetes-overview
to get started.
This package is available on the MELPA package repository. See the instructions there for how to configure Emacs to pull packages from MELPA.
Once you've set that up, use your preferred method of configuring and installing packages. If you use use-package, the forms below will get you started.
(use-package kubernetes
:ensure t
:commands (kubernetes-overview))
;; If you want to pull in the Evil compatibility package.
(use-package kubernetes-evil
:ensure t
:after kubernetes)
Otherwise, you can install the packages with M-x package-install
.
Disabling automatic refresh helped many to solve issue #100. For example one can use the following configuration:
(use-package kubernetes
:ensure t
:commands (kubernetes-overview)
:config
(setq kubernetes-poll-frequency 3600
kubernetes-redraw-frequency 3600))
Requires Emacs 25 and Cask.
git clone git@github.com:kubernetes-el/kubernetes-el.git
cd kubernetes-el
make && make install
Yes please! 😻 See contributing.org