ansible-role-zuul/defaults/main.yaml

92 lines
3.3 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.
---
# tasks/config.yaml
zuul_user_name: zuul
zuul_user_group: zuul
zuul_user_home: /var/lib/zuul
zuul_file_layout_dest: /etc/zuul/config/
zuul_file_layout_group: "{{ zuul_user_group }}"
zuul_file_layout_mode: "0755"
zuul_file_layout_owner: "{{ zuul_user_name }}"
zuul_file_layout_src: etc/zuul/config/
zuul_file_gearman_logging_conf_dest: /etc/zuul/gearman-logging.conf
zuul_file_gearman_logging_conf_group: "{{ zuul_user_group }}"
zuul_file_gearman_logging_conf_mode: "0644"
zuul_file_gearman_logging_conf_owner: "{{ zuul_user_name }}"
zuul_file_gearman_logging_conf_src: etc/zuul/gearman-logging.conf
zuul_file_launcher_logging_conf_dest: /etc/zuul/launcher-logging.conf
zuul_file_launcher_logging_conf_group: "{{ zuul_user_group }}"
zuul_file_launcher_logging_conf_mode: "0644"
zuul_file_launcher_logging_conf_owner: "{{ zuul_user_name }}"
zuul_file_launcher_logging_conf_src: etc/zuul/launcher-logging.conf
zuul_file_merger_logging_conf_dest: /etc/zuul/merger-logging.conf
zuul_file_merger_logging_conf_group: "{{ zuul_user_group }}"
zuul_file_merger_logging_conf_mode: "0644"
zuul_file_merger_logging_conf_owner: "{{ zuul_user_name }}"
zuul_file_merger_logging_conf_src: etc/zuul/merger-logging.conf
zuul_file_server_logging_conf_dest: /etc/zuul/server-logging.conf
zuul_file_server_logging_conf_group: "{{ zuul_user_group }}"
zuul_file_server_logging_conf_mode: "0644"
zuul_file_server_logging_conf_owner: "{{ zuul_user_name }}"
zuul_file_server_logging_conf_src: etc/zuul/server-logging.conf
zuul_file_zuul_conf_dest: /etc/zuul/zuul.conf
zuul_file_zuul_conf_group: "{{ zuul_user_group }}"
zuul_file_zuul_conf_mode: "0644"
zuul_file_zuul_conf_owner: "{{ zuul_user_name }}"
zuul_file_zuul_conf_src: etc/zuul/zuul.conf
# tasks/install.yaml
zuul_git_dest: /opt/ansible-role-zuul/git/openstack-infra/zuul
zuul_git_uri: https://git.openstack.org/openstack-infra/zuul
zuul_git_version: master
zuul_install_method: git
zuul_pip_version:
# tasks/service.yaml
zuul_file_zuul_service_config_group: root
zuul_file_zuul_service_config_owner: root
zuul_file_zuul_launcher_service_group: root
zuul_file_zuul_launcher_service_owner: root
zuul_file_zuul_merger_service_group: root
zuul_file_zuul_merger_service_owner: root
zuul_file_zuul_server_service_group: root
zuul_file_zuul_server_service_owner: root
zuul_service_zuul_launcher_enabled: yes
zuul_service_zuul_launcher_manage: true
zuul_service_zuul_launcher_name: zuul-launcher
zuul_service_zuul_launcher_state: started
zuul_service_zuul_merger_enabled: yes
zuul_service_zuul_merger_manage: true
zuul_service_zuul_merger_name: zuul-merger
zuul_service_zuul_merger_state: started
zuul_service_zuul_server_enabled: yes
zuul_service_zuul_server_manage: true
zuul_service_zuul_server_name: zuul-server
zuul_service_zuul_server_state: started