Forge Home

jenkins

install jenkins on centos 7

6,427 downloads

6,055 latest version

4.6 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.0.2 (latest)
  • 1.0.1
  • 1.0.0
  • 0.1.1 (deleted)
  • 0.1.0
released Feb 15th 2018
This version is compatible with:

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'kaushik-jenkins', '1.0.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add kaushik-jenkins
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install kaushik-jenkins --version 1.0.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

kaushik/jenkins — version 1.0.2 Feb 15th 2018

jenkins

Table of Contents

  1. Description
  2. Setup - The basics of getting started with jenkins
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how

Description

This module does easy installation of Jenkins a continuous integration open source tool.

This module can even do the prerouting of the port from 8080 (jenkins default port) to any port available and your choice.

Setup

What jenkins affects OPTIONAL

Jenkins is a self-contained, open source automation server which can be used to automate all sorts of tasks related to building, testing, and delivering or deploying software.

Jenkins can be installed through native system packages, Docker, or even run standalone by any machine with a Java Runtime Environment (JRE) installed.

Setup Requirements OPTIONAL

To install this moduele, the prerequisites are you must have wget installed in your machine,and java 1.8(even openjdk works).

Usage

In the node definetion you can define a paramerter by name "to_port" so that you can redirect the jenkins port to the one you wished. if you dont mention any port the default value is 80, so you must try http://ipaddress to access jenkins through browser. in case you give any port then http://ipaddress:to_port to access jenkins page.

Reference

Example of the node definetion:

node 'nodename'{
      class{'::jenkins':
             to_port => '443'
      }