Skip to content

AdesisNetlife/ansible-jenkins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ansible Jenkins Role

Description

ansible-jenkins is an Ansible role. Use this role to install Jenkins CI.

Provides

  1. Latest Jenkins CI server

Requires

  1. Ansible 1.7 o higher
  2. Ubuntu Server 14.04
  3. Vagrant (optional)

Usage

Get the code

$ git clone git@github.com:AdesisNetlife/ansible-jenkins.git

The code should reside in the roles directory of ansible ( See ansible documentation for more information on roles ), in a folder named jenkins.

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

---

timezone: Europe/Madrid

# NTP servers
ntp_server1: ntp0.ox.ac.uk
ntp_server2: ntp1.ox.ac.uk
ntp_server3: ntp2.ox.ac.uk
ntp_server4: ntp3.ox.ac.uk
ntp_server5: 0.uk.pool.ntp.org
ntp_server6: 1.uk.pool.ntp.org
ntp_server7: ntp.ubuntu.com # fallback

# Scala
scala_version: 2.10.4

# Maven
maven_version: 3.2.3

# Ant
ant_version: 1.9.4

# Gradle
gradle_version: 2.1

# SBT
sbt_version: 0.13.6

# NodeJs
nodejs_version: v0.10.32
nodejs_global_packages:
  - nodemon
  - debug
  - foreman
  # complete with more packages

# JENKINS
jenkins:
  plugins:
    - github
    - translation
    - preSCMbuildstep
    - gradle
    - sbt
    # complete with more plugins

Run the playbook

First create a playbook including the jenkins role, naming it jenkins.yml

- name: Jenkins
  hosts: jenkins
  roles:
    - ansible-jenkins

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 jenkins.yml -u vagrant

About

An Ansible role for installing Jenkins CI server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published