Skip to content

oppian/ansible-jenkins

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Readme

Description

ansible-jenkins is an Ansible playbook. The playbook contains tasks to install Jenkins and install/update plugins.

Requirements

Ansible

Everything is documented on the Ansible site...

Supported platforms

Playbook tested on Debian-7.0-b4-amd64, probably works on other Debian versions too. Heavily depends on apt, sorry CentOS users...

Usage

Get the code

$ git clone [email protected]:ICTO/ansible-jenkins.git

Create a host file

Following example make ansible aware of the Vagrant box reachable on localhost port 2222.

$ vi ansible.host

with

[jenkins]
127.0.0.1 ansible_ssh_port=2222

Create host specific variables

Make the host_vars directory where ansible.host file is located.

$ mkdir host_vars

Create a file in the newly created directory matching your host.

$ cd host_vars
$ vi 127.0.0.1

with

---
plugins:
  - 'ldap'
  - 'github'
  - 'translation'
  - 'preSCMbuildstep'

Run the playbook

Use ansible.host as inventory. Run the playbook only for the remote host jenkins. Use vagrant as the SSH user to connect to the remote host. -k enables the SSH password prompt.

$ ansible-playbook -k -i ansible.host ansible-jenkins/setup.yml --extra-vars="user=vagrant"

Example output

SSH password: 

PLAY [Jenkins playbook] ********************* 

GATHERING FACTS ********************* 
ok: [127.0.0.1]

TASK: [Install python-software-properties] ********************* 
ok: [127.0.0.1]

TASK: [Add jenkins apt-key] ********************* 
ok: [127.0.0.1]

TASK: [Add Jenkins repository] ********************* 
ok: [127.0.0.1]

TASK: [Remove invalid Jenkins src repository] ********************* 
changed: [127.0.0.1]

TASK: [Install dependencies] ********************* 
ok: [127.0.0.1] => (item=openjdk-6-jre,openjdk-6-jdk,git,curl)

TASK: [Install Jenkins] ********************* 
ok: [127.0.0.1]

TASK: [10s delay while starting Jenkins] ********************* 
skipping: [127.0.0.1]

TASK: [Create Jenkins CLI destination directory: /opt/jenkins] ********************* 
ok: [127.0.0.1]

TASK: [Get Jenkins CLI] ********************* 
ok: [127.0.0.1]

TASK: [Get Jenkins updates] ********************* 
changed: [127.0.0.1]

TASK: [Update-center Jenkins] ********************* 
changed: [127.0.0.1]

TASK: [Install/update plugins] ********************* 
changed: [127.0.0.1] => (item=ldap)
changed: [127.0.0.1] => (item=github)
changed: [127.0.0.1] => (item=translation)
changed: [127.0.0.1] => (item=preSCMbuildstep)

TASK: [10s delay while installing plugins] ********************* 
ok: [127.0.0.1]

TASK: [Safe-restart Jenkins] ********************* 
changed: [127.0.0.1]

PLAY RECAP ********************* 
127.0.0.1                   : ok=14   changed=5    unreachable=0    failed=0    

Docs and contact

Read more on the Wiki pages about how this playbook works.

http://icto.ugent.be

Releases

No releases published

Packages

No packages published