From e32c6c59fb9a1fc36dee86120a96fb700c529191 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Mon, 5 Jan 2026 17:13:31 +0000 Subject: [PATCH] fix(jenkins): Add Docker socket mount for CI/CD pipelines --- apps/jenkins/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/jenkins/deployment.yaml b/apps/jenkins/deployment.yaml index 22f233a..b6f005c 100644 --- a/apps/jenkins/deployment.yaml +++ b/apps/jenkins/deployment.yaml @@ -27,7 +27,13 @@ spec: volumeMounts: - name: jenkins-home mountPath: /var/jenkins_home + - name: docker-sock + mountPath: /var/run/docker.sock volumes: - name: jenkins-home persistentVolumeClaim: claimName: jenkins-home + - name: docker-sock + hostPath: + path: /var/run/docker.sock + type: Socket