ansible-role-jenkins/defaults/main.yaml

39 lines
1.4 KiB
YAML

# Copyright 2015 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
---
jenkins_user_name: jenkins
jenkins_user_group: "{{ jenkins_user_name }}"
jenkins_user_home: "/var/lib/{{ jenkins_user_name }}"
jenkins_config_ajp_listen_address: 127.0.0.1
jenkins_config_ajp_port: -1
jenkins_config_args: ''
jenkins_config_debug_level: 5
jenkins_config_enable_access_log: no
jenkins_config_handler_idle: 20
jenkins_config_handler_max: 100
jenkins_config_home: "{{ jenkins_user_home }}"
jenkins_config_https_keystore: ''
jenkins_config_https_keystore_password: ''
jenkins_config_https_listen_address: 127.0.0.1
jenkins_config_https_port: ''
jenkins_config_java_cmd: ''
jenkins_config_java_options: '-Djava.awt.headless=true'
jenkins_config_listen_address: 127.0.0.1
jenkins_config_port: 8008
jenkins_config_user: "{{ jenkins_user_name }}"
jenkins_template_config_dest: /etc/sysconfig/jenkins
jenkins_template_config_src: etc/sysconfig/jenkins.j2