Terminal and Web console for Kubernetes
Features
Switch contexts interactively
Authentication support (bearer token, basic auth, private key / cert, OAuth, OpenID Connect, Amazon EKS, Google Kubernetes Engine, Digital Ocean)
Namespace selection and pods list watching
Container log scrolling / watching
Container resources usage (memory, CPU, network, file system charts) [1]
Container remote exec terminal
Cluster, namespace, pod events
Follow @kubebox for some updates.
Run
The following alternatives are available for you to use Kubebox, depending on your preferences and constraints:
Executable
Download the Kubebox standalone executable for your OS:
Then run:
Server
Kubebox can be served from a service hosted in your Kubernetes cluster. Terminal emulation is provided by Xterm.js and the communication with the Kubernetes master API is proxied by the server.
To deploy the server in your Kubernetes cluster, run:
To shut down the server and clean-up resources, run:
For the Ingress resource to work, the cluster must have an Ingress controller running. See Ingress controllers for more information.
Alternatively, to deploy the server in your OpenShift cluster, run:
Kubectl
You can run Kubebox as an in-cluster client with kubectl, e.g.:
If RBAC is enabled, you’ll have to use the --serviceaccount option and reference a service account with sufficient permissions.
Docker
You can run Kubebox using Docker, e.g.:
You may want to mount your home directory so that Kubebox can rely on the ~/.kube/config file, e.g.:
Online
Authentication
We try to support the various authentication strategies supported by kubectl, in order to provide seamless integration with your local setup. Here are the different authentication strategies we support, depending on how you’re using Kubebox:
OpenID Connect | yes | yes | yes[2] |
Amazon EKS | yes | ||
Digital Ocean | yes | ||
Google Kubernetes Engine | yes |
If the mode you’re using isn’t supported, you can refresh the authentication token/certs manually and update your kubeconfig file accordingly.
cAdvisor
Kubebox relies on cAdvisor to retrieve the resource usage metrics. Before version 0.8.0, Kubebox used to access the cAdvisor endpoints, that are embedded in the Kubelet. However, these endpoints are being deprecated, and will eventually be removed, as discussed in kubernetes#68522.
Starting version 0.8.0, Kubebox expects cAdvisor to be deployed as a DaemonSet. This can be achieved with:
It’s recommended to use the provided cadvisor.yaml file, that’s tested to work with Kubebox. However, the DaemonSet example, from the cAdvisor project, should also work just fine. Note that the cAdvisor containers must run with a privileged security context, so that they can access the container runtime on each node.
You can change the default --storage_duration and --housekeeping_interval options, added to the cAdvisor container arguments declared in the cadvisor.yaml file, to adjust the duration of the storage moving window (default to 5m0s), and the sampling period (default to 10s) respectively. You may also have to provide the path of your cluster container runtime socket, in case it’s not following the usual convention.
Hotkeys
General | |
l, Ctrl+l | Login |
n | Change current namespace |
[Shift+]←, → [Alt+]1, …, 9 | Navigate screens (use Shift or Alt inside exec terminal) |
↑, ↓ | Navigate list / form / log |
Enter | Select item / submit form |
Esc | Close modal window / cancel form / rewind focus |
Ctrl+z | Close current tab |
q, Ctrl+q | Exit |
Login | |
←, → | Navigate Kube configurations |
Pods | |
Enter | Select pod / cycle containers |
r | Remote shell into container |
m | Memory usage |
c | CPU usage |
t | Network usage |
f | File system usage |
e | Open pod events tab |
Shift+e | Open namespace events tab |
Ctrl+e | Open cluster events tab |
Log | |
g, Shift+g | Move to top / bottom |
Ctrl+u, Ctrl+d | Move one page up / down |
FAQ
The metrics are retrieved from the REST API, of the cAdvisor pod running on the same node as the container for which the metrics are being requested. That REST API is accessed via the API server proxy, which requires proper RBAC permission, e.g.: