View and control Kamaji with a simple user interface from the web.
A sample manifest is available: deploy/kamaji-console.yaml
. To deploy the console in the admin cluster, edit the manifest according to your environment and apply:
kubectl apply -f deploy/
Alternatively, install with Helm:
helm repo add clastix https://clastix.github.io/charts
helm repo update
helm install console clastix/kamaji-console -n kamaji-system --create-namespace
Create a .env
file with the information contained in .env.example
$ npm install
$ npm run dev
The console should be run in an environment with a default connection to kubenretes API.
This repo contains visual UI tests using storybook. To run storybook
$ npm run storybook
When reading child cluster resources, such as node, the console uses the TCP kubeconfig in order to connect to the child cluster.
When running in dev mode, using npm run dev
, the console uses raw kubeconfig to connect to the cluster, in this way you should check that the child kubernetes API are reachable from your local development tool.
When build and deployed using docker, the console supposes to be runned inside parent kubernetes cluster, so it connects to the TCP using the tcp service fqdn in order to talk with child cluster kubernetes api.