Install Helm
No SSL, Default plugins only
# Install Jenkins
helm install stable/jenkins --name helm-jenkins
# Get admin password
printf $(kubectl get secret --namespace default helm-jenkins -o jsonpath="{.data.jenkins-admin-password}" | base64 --decode);echo
Jenkins Pod will not run because there is no Persistent Volume.
Edit the existing PVC and add spec.storageClassName: pv-pvc-helm-jenkins-link
Create a PV with spec.storageClassName: pv-pvc-helm-jenkins-link
storageClassName is the link between pv & pvc
Edit the existing SVC and change spec.type value from LoadBalance to NodePort
Delete the spec.loadBalancerSourceRanges and its values.
docker not found
NOTE: JNLP Dont have DOCKER installed. use this instead
adriagalin/jenkins-jnlp-slave