Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document additional class params #139

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# version = 'installed' (Default)
# Will NOT update jenkins to the most recent version.
#
# version = 'latest'
# Will automatically update the version of jenkins to the current version available via your package manager.
#
Expand All @@ -19,8 +20,14 @@
# this module.
# This is for folks that use a custom repo, or the like.
#
# service_enable = true (default)
# Enable (or not) the jenkins service
#
# service_ensure = 'running' (default)
# Status of the jenkins service. running, stopped
#
# config_hash = undef (Default)
# Hash with config options to set in sysconfig/jenkins defaults/jenkins
# Hash with config options to set in sysconfig/jenkins defaults/jenkins
#
# Example use
#
Expand Down Expand Up @@ -68,6 +75,13 @@
# - use puppetlabs-java module to install the correct version of a JDK.
# - Jenkins requires a JRE
#
# proxy_host = undef (default)
# proxy_port = undef (default)
# If your environment requires a proxy host to download plugins it can be configured here
#
# cli = undef (default)
# Installs the jenkins cli
#
class jenkins(
$version = $jenkins::params::version,
$lts = $jenkins::params::lts,
Expand Down