fix(jenkins): Add Docker socket mount for CI/CD pipelines

This commit is contained in:
Claude AI
2026-01-05 17:13:31 +00:00
parent e5c284caa8
commit e32c6c59fb

View File

@@ -27,7 +27,13 @@ spec:
volumeMounts: volumeMounts:
- name: jenkins-home - name: jenkins-home
mountPath: /var/jenkins_home mountPath: /var/jenkins_home
- name: docker-sock
mountPath: /var/run/docker.sock
volumes: volumes:
- name: jenkins-home - name: jenkins-home
persistentVolumeClaim: persistentVolumeClaim:
claimName: jenkins-home claimName: jenkins-home
- name: docker-sock
hostPath:
path: /var/run/docker.sock
type: Socket