-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
Major
-
Component/s: docker-workflow-plugin, ssh-agent-plugin
-
None
-
Environment:CloudBees Docker Workflow 1.2
Jenkins ver. 1.625.3.1 (CloudBees Jenkins Enterprise 15.11)
sshagent('my-ssh-key'){...} is ignored in docker.image('cloudbees:java-build-tools').inside{...}. The same sshagent step works in 'standard' linux node.
See attached logs
sshagent(){...} ignored in docker.image(...).inside{...}Â
docker.image ('cloudbees/java-build-tools:0.0.7.1').inside { sh 'ls -al ~/.ssh/ || true' sshagent(['aws-cleclerc-ssh-key-ubuntu-cleclerc']) { sh 'echo SSH_AUTH_SOCK=$SSH_AUTH_SOCK' sh 'ls -al $SSH_AUTH_SOCK || true' sh "ssh -vvv -o StrictHostKeyChecking=no ubuntu@docker-agent.beesshop.org uname -a" } }
sshagent(){...} WORKS in node{...}Â
node {
sh 'ls -al ~/.ssh/ || true'
sshagent(['aws-cleclerc-ssh-key-ubuntu-cleclerc']) {
sh 'echo SSH_AUTH_SOCK=$SSH_AUTH_SOCK'
sh 'ls -al $SSH_AUTH_SOCK || true'
sh "ssh -vvv -o StrictHostKeyChecking=no ubuntu@docker-agent.beesshop.org uname -a"
}
}
- duplicates
-
JENKINS-27152 Store sh control files outside of workspace
-
- Resolved
-
- is related to
-
JENKINS-42582 ssh-agent not applied in kubernetes container
-
- Resolved
-