From cbdf0faa1420b63ee0dc5051a2cafd11437d19e1 Mon Sep 17 00:00:00 2001 From: hiondal Date: Fri, 12 Sep 2025 16:39:38 +0900 Subject: [PATCH] =?UTF-8?q?Jenkins=20=EC=97=90=EC=9D=B4=EC=A0=84=ED=8A=B8?= =?UTF-8?q?=20Pod=EC=97=90=20CICD=20=EC=A0=84=EC=9A=A9=20=EB=85=B8?= =?UTF-8?q?=EB=93=9C=20tolerations=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - tolerations: dedicated=cicd:NoSchedule 설정 추가 - CICD 전용 노드에서만 파이프라인 실행되도록 제한 - Kubernetes 네이티브 YAML 설정으로 노드 격리 구현 - CI/CD 워크로드 전용 리소스 보장 --- deployment/cicd/Jenkinsfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/deployment/cicd/Jenkinsfile b/deployment/cicd/Jenkinsfile index c224ed2..0a2f341 100644 --- a/deployment/cicd/Jenkinsfile +++ b/deployment/cicd/Jenkinsfile @@ -12,6 +12,14 @@ podTemplate( slaveConnectTimeout: 300, idleMinutes: 30, activeDeadlineSeconds: 3600, + yaml: ''' + spec: + tolerations: + - effect: NoSchedule + key: dedicated + operator: Equal + value: cicd + ''', containers: [ containerTemplate( name: 'podman',