How can I get an install of KubeApps running on K3s? What are the minimal required steps?
1 Answer
Installing k3s and kubeapps
Install k3s, (official instructions)
curl -sfL https://get.k3s.io | sh -Add
KUBECONFIGfor user. (Devops.StackExchange)export KUBECONFIG=~/.kube/config mkdir ~/.kube 2> /dev/null sudo k3s kubectl config view --raw > "$KUBECONFIG" chmod 600 "$KUBECONFIG"Install Helm, (offical instructions)
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bashSetup Kubeapps, (official instructions)
Install Kubeapps
helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update helm install -n kubeapps --create-namespace kubeapps bitnami/kubeappsConfigure Kubeapps
kubectl create --namespace default serviceaccount kubeapps-operator kubectl create clusterrolebinding kubeapps-operator --clusterrole=cluster-admin --serviceaccount=default:kubeapps-operator cat <<EOF | kubectl apply -f - apiVersion: v1 kind: Secret metadata: name: kubeapps-operator-token namespace: default annotations: kubernetes.io/service-account.name: kubeapps-operator type: kubernetes.io/service-account-token EOF kubectl get --namespace default secret kubeapps-operator-token -o jsonpath='{.data.token}' -o go-template='{{.data.token | base64decode}}' && echoPlay (note we have a slight modification with
--address 0.0.0.0)kubectl port-forward -n kubeapps --address 0.0.0.0 svc/kubeapps 8080:80
Removal
sudo k3s-uninstall.sh # Remove helm, and caches sudo rm -rf /usr/local/bin/helm ~/.cache/helm /root/.cache/helm # Remove logs sudo rm -rf /var/log/pods/ # Your own cluster config/keys/kubeconfig sudo rm -rf ~/.kube - Also add this line to the install instructions
echo "export KUBECONFIG=~/.kube/config" >> ~/.bashrcto automate KUBECONFIG finding in each login.EsmaeelE– EsmaeelE2024-10-06 08:23:44 +00:00Commented Oct 6, 2024 at 8:23