macOS 환경에서 kind k8s 클러스터에 Jenkins 를 helm 사용하여 설치하기
kubectl create namespace cicd-jenkins
kind 로 구성할 때 2개의 워커 노드를 설정을 하였고, 각각 jenkins, argocd 를 위한 hostPath 지정함.
PV 사용을 원지 않으면, 이 과정은 생략 가능함.
kubectl apply -f jenkins-persistence.yaml
2025.10.29 기준 최신 버전 5.8.104
# 사전에 만들어 놓은 jenkins 5.8.104 버전
git clone git@github.com:youngseokyoon/jenkinsci-helm-charts.git -b 5.8.104
helm repo add jenkins https://charts.jenkins.io
helm repo update
helm pull jenkins/jenkins --version 5.8.104 --untar
helm install cicd-jenkins -n cicd-jenkins -f jenkins-5.8.104-values.yaml charts/jenkins