A script that lets you add the current Kubernetes context and namespace configured
on kubectl
to your tmux status line.
Inspired by kube-ps1, this is a port to tmux that includes all the features that make kube-ps1 efficient and brings it to the tmux status line.
This is the first iteration of this plugin, so the updates will be very frequent. Track this repo for changes, and keep in mind some of them might cause issues, although I will try to keep them at a minimum, and provide fixes as soon as possible. Please be patient!
If you have any bug reports, please feel free to submit a PR, or a bug report.
Installation with Tmux Plugin Manager (recommended)
Add plugin to the list of TPM plugins in .tmux.conf
:
set -g @plugin 'danwald/kube-tmux'
Hit prefix + I
to fetch the plugin and source it.
You should now the k8s info in your status
Clone the repo:
$ git clone https://github.com/danwald/kube-tmux ~/clone/path
Add this line to the bottom of .tmux.conf
:
run-shell ~/clone/path/kube-tmux
Reload TMUX environment:
# type this in terminal
$ tmux source-file ~/.tmux.conf
set -g status-right "#(/bin/bash $HOME/.tmux/kube.tmux 250 red cyan)"
250 is the color selection for the default foreground, red for the context, and cyan for the namespace.
- tmux
- kubectl
The default plugin layout is:
<symbol> <cluster>:<namespace>
If the current-context is not set, kube-tmux will return the following:
<symbol> N/A:N/A
The default color for the context are red, and cyan for the namespace Colors for the default text, context, and namespace can be changed:
#(/bin/bash $HOME/.tmux/kube.tmux text context namespace)