19 lines
543 B
Markdown
19 lines
543 B
Markdown
# first add our custom repo to your local helm repositories
|
|
helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/
|
|
|
|
# now you should be able to install headlamp via helm
|
|
|
|
helm install headlamp headlamp/headlamp \
|
|
-n headlamp \
|
|
--create-namespace \
|
|
--set config.inCluster=true \
|
|
--set config.kubeconfig="" \
|
|
--set config.dynamicKubeconfig.enabled=false \
|
|
--set serviceAccount.create=true \
|
|
--set serviceAccount.clusterAdmin=true
|
|
|
|
kubectl apply -f ingressroute.yaml
|
|
|
|
kubectl create token headlamp --namespace headlamp
|
|
|