W3cubDocs

/Ansible

jenkins_job - Manage jenkins jobs

New in version 2.2.

Synopsis

Manage Jenkins jobs by using Jenkins REST API.

Requirements (on host that executes module)

  • python-jenkins >= 0.4.12
  • lxml >= 3.3.3

Options

parameter required default choices comments
config
no
config in XML format.
Required if job does not yet exist.
Mututally exclusive with enabled.
Considered if state=present.
enabled
no
Whether the job should be enabled or disabled.
Mututally exclusive with config.
Considered if state=present.
name
yes
Name of the Jenkins job.
password
no
Password to authenticate with the Jenkins server.
state
no present
  • present
  • absent
Attribute that specifies if the job has to be created or deleted.
token
no
API token used to authenticate alternatively to password.
url
no http://localhost:8080
Url where the Jenkins server is accessible.
user
no
User to authenticate with the Jenkins server.

Examples

# Create a jenkins job using basic authentication
- jenkins_job:
    config: "{{ lookup('file', 'templates/test.xml') }}"
    name: test
    password: admin
    url: "http://localhost:8080"
    user: admin

# Create a jenkins job using the token
- jenkins_job:
    config: "{{ lookup('template', 'templates/test.xml.j2') }}"
    name: test
    token: asdfasfasfasdfasdfadfasfasdfasdfc
    url: "http://localhost:8080"
    user: admin

# Delete a jenkins job using basic authentication
- jenkins_job:
    name: test
    password: admin
    state: absent
    url: "http://localhost:8080"
    user: admin

# Delete a jenkins job using the token
- jenkins_job:
    name: test
    token: asdfasfasfasdfasdfadfasfasdfasdfc
    state: absent
    url: "http://localhost:8080"
    user: admin

# Disable a jenkins job using basic authentication
- jenkins_job:
    name: test
    password: admin
    enabled: false
    url: "http://localhost:8080"
    user: admin

# Disable a jenkins job using the token
- jenkins_job:
    name: test
    token: asdfasfasfasdfasdfadfasfasdfasdfc
    enabled: false
    url: "http://localhost:8080"
    user: admin

Return Values

Common return values are documented here Common Return Values, the following are the fields unique to this module:

name description returned type sample
url Url to connect to the Jenkins server. success string https://jenkins.mydomain.com
state State of the jenkins job. success string present
enabled Whether the jenkins job is enabled or not. success bool True
name Name of the jenkins job. success string test-job
user User used for authentication. success string admin

This is an Extras Module

For more information on what this means please read Extras Modules

For help in developing on modules, should you be so inclined, please read Community Information & Contributing, developing_test_pr and Developing Modules.

© 2012–2016 Michael DeHaan
© 2016 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/jenkins_job_module.html