-
Bug
-
Resolution: Fixed
-
Major
-
Latest (11.29.18) Jenkins Version 2.153 (2018-11-25)
Latest (11.29.18) Jenkins Ansible Pipeline plugin Version 1.0 (26 March 2018)
-
-
148.v6b_13c6de3a_47
When using the Ansible Plugin with jenkins Pipeline,
I can't see the entire log on Jenkins PIpeline build output - Some output is missing at the end of the Ansible play.
The output looks fine on a terminal - if I'll SSH to the server and run the ansible-playbook command from the command line.
- This issue started about a month ago..
Here is a screenshot of how the output look like now:
https://imgur.com/waX7XcM
Ansible Plugin:
https://jenkins.io/doc/pipeline/steps/ansible/
This is the Pipeline code that uses the Ansible Pipeline Plugin:
stage('running something') { steps { script { dir('my/path/here') { ansiblePlaybook([ inventory : 'hosts', playbook : 'main.yml', installation: 'ansible', sudoUser : null, colorized : true, extraVars : [ blah : "${params.blah}", some_var : "${params.some_var}" ] ]) } } } }
- relates to
-
JENKINS-52729 Launcher.ProcStarter.stdout(TaskListener) discards remotability
- Resolved