Skip to content

Skooner

Artifact Hub GitHub Release

Skooner is a Kubernetes Dashboard that aims to help you understand and manage your cluster. If you want to take a look at it's source code, it can be found on Github.

The source code for the helm chart to deploy skooner can be found on Github as well.

Installing Skooner with the Helm Chart.

# Adding the Repository
helm repo add skooner https://kube-the-home.github.io/skooner-helm/

# Installing the Chart
helm install my-skooner skooner/skooner

Authentication

If you do not specify any external authentication you need to get the access token from the respective Kubernetes Secret.

kubectl describe secret skooner-secret -n <your_skooner_namespace>
Hint

Setting up external authentication is not yet possible in the current helm chart version.

Example Values

ingress:
    enabled: true
    annotations:
        cert-manager.io/cluster-issuer: letsencrypt-dns01-issuer
    host: skooner.example.com
    tls:
    - hosts:
        - skooner.example.com
      secretName: skooner-tls
resources:
    requests:
        memory: "100Mi"
        cpu: "50m"
    limits:
        memory: "150Mi"
        cpu: "100m"