Skip to main content

Install Jenkins Helm on Microk8s Metallb

Enable Metallb

microk8s enable metallb

Full installation with modules go here -> MicroK8s install with Helm and OneDev

Install helm

sudo snap install helm --classic

Install Jenkins

helm repo add jenkins https://charts.jenkins.io
helm repo update

Deploy Jenkins

helm install jenkins jenkins/jenkins --namespace jenkins --create-namespace --set controller.serviceType=LoadBalancer

Get IP

kubectl get services -n jenkins

Get password

printf $(kubectl get secret --namespace jenkins jenkins -o jsonpath="{.data.jenkins-admin-password}" | base64 --decode);echo