Kamaji deploys and operates Kubernetes at scale with a fraction of the operational burden. This chart install a console for Kamaji.
## Install the console
This chart requires a Secret in your Kubernetes cluster that contains the configuration and credentials to access the console. You can have the chart generate it for you, or create it yourself and provide the name of the Secret during installation.
Replace placeholders with actual values, and execute the following:
```bash
# The secret is required, otherwise the installation will fail
cat <<EOF|kubectlapply-f-
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: <secret-name>
namespace: <charts-namespace>
data:
# Credentials to login into console
ADMIN_EMAIL: <email>
ADMIN_PASSWORD: <password>
# Secret used to sign the browser session
JWT_SECRET: <jwtSecret>
# URL where the console is accessible: https://<hostname>/ui
NEXTAUTH_URL: <nextAuthUrl>
EOF
```
Make sure you set `credentialsSecret.name` value to the name of the secret <secret-name>.
To install the Chart with the release name `kamaji-console` in the `kamaji-system` namespace: