Skip to content

Instantly share code, notes, and snippets.

@rkamradt
Last active February 20, 2021 06:46
Show Gist options
  • Save rkamradt/cff9f9ce44eb9dc25ed17774eaf039dd to your computer and use it in GitHub Desktop.
Save rkamradt/cff9f9ce44eb9dc25ed17774eaf039dd to your computer and use it in GitHub Desktop.
Kubernetes install of Jenkins
# for google jenkins package
helm repo add stable https://kubernetes-charts.storage.googleapis.com
helm repo update
helm install jenkins stable/jenkins
kubectl get secret --namespace default jenkins -o jsonpath="{.data.jenkins-admin-password}" | base64 --decode
edit service/jenkins
# for bitnami jenkins package
helm install jenkins bitnami/jenkins
kubectl get secret --namespace default jenkins -o jsonpath="{.data.jenkins-password}" | base64 --decode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment