39ffa189af
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
92 lines
2.6 KiB
Django/Jinja
92 lines
2.6 KiB
Django/Jinja
# This file is generated by Ansible
|
|
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
|
|
#
|
|
|
|
# Directory where Jenkins store its configuration and working
|
|
# files (checkouts, build reports, artifacts, ...).
|
|
#
|
|
JENKINS_HOME="{{ jenkins_config_home }}"
|
|
|
|
# Java executable to run Jenkins
|
|
# When left empty, we'll try to find the suitable Java.
|
|
#
|
|
JENKINS_JAVA_CMD="{{ jenkins_config_java_cmd }}"
|
|
|
|
# Unix user account that runs the Jenkins daemon
|
|
# Be careful when you change this, as you need to update
|
|
# permissions of $JENKINS_HOME and /var/log/jenkins.
|
|
#
|
|
JENKINS_USER="{{ jenkins_config_user }}"
|
|
|
|
# Whether to skip potentially long-running chown at the
|
|
# $JENKINS_HOME location. Do not enable this, "true", unless
|
|
# you know what you're doing. See JENKINS-23273.
|
|
#
|
|
#JENKINS_INSTALL_SKIP_CHOWN="false"
|
|
|
|
# Options to pass to java when running Jenkins.
|
|
#
|
|
JENKINS_JAVA_OPTIONS="{{ jenkins_config_java_options }}"
|
|
|
|
# Port Jenkins is listening on.
|
|
# Set to -1 to disable
|
|
#
|
|
JENKINS_PORT="{{ jenkins_config_port }}"
|
|
|
|
# IP address Jenkins listens on for HTTP requests.
|
|
# Default is all interfaces (0.0.0.0).
|
|
#
|
|
JENKINS_LISTEN_ADDRESS="{{ jenkins_config_listen_address }}"
|
|
|
|
# HTTPS port Jenkins is listening on.
|
|
# Default is disabled.
|
|
#
|
|
JENKINS_HTTPS_PORT="{{ jenkins_config_https_port }}"
|
|
|
|
# Path to the keystore in JKS format (as created by the JDK 'keytool').
|
|
# Default is disabled.
|
|
#
|
|
JENKINS_HTTPS_KEYSTORE="{{ jenkins_config_https_keystore }}"
|
|
|
|
# Password to access the keystore defined in JENKINS_HTTPS_KEYSTORE.
|
|
# Default is disabled.
|
|
#
|
|
JENKINS_HTTPS_KEYSTORE_PASSWORD="{{ jenkins_config_https_keystore_password }}"
|
|
|
|
# IP address Jenkins listens on for HTTPS requests.
|
|
# Default is disabled.
|
|
#
|
|
JENKINS_HTTPS_LISTEN_ADDRESS="{{ jenkins_config_https_listen_address }}"
|
|
|
|
# Ajp13 Port Jenkins is listening on.
|
|
# Set to -1 to disable
|
|
#
|
|
JENKINS_AJP_PORT="{{ jenkins_config_ajp_port }}"
|
|
|
|
# IP address Jenkins listens on for Ajp13 requests.
|
|
# Default is all interfaces (0.0.0.0).
|
|
#
|
|
JENKINS_AJP_LISTEN_ADDRESS="{{ jenkins_config_ajp_listen_address }}"
|
|
|
|
# Debug level for logs -- the higher the value, the more verbose.
|
|
# 5 is INFO.
|
|
#
|
|
JENKINS_DEBUG_LEVEL="{{ jenkins_config_debug_level }}"
|
|
|
|
# Whether to enable access logging or not.
|
|
#
|
|
JENKINS_ENABLE_ACCESS_LOG="{{ jenkins_config_enable_access_log }}"
|
|
|
|
# Maximum number of HTTP worker threads.
|
|
#
|
|
JENKINS_HANDLER_MAX="{{ jenkins_config_handler_max }}"
|
|
|
|
# Maximum number of idle HTTP worker threads.
|
|
#
|
|
JENKINS_HANDLER_IDLE="{{ jenkins_config_handler_idle }}"
|
|
|
|
# Pass arbitrary arguments to Jenkins.
|
|
# Full option list: java -jar jenkins.war --help
|
|
#
|
|
JENKINS_ARGS="{{ jenkins_config_args }}"
|