ansible-role-zuul/tasks/config.yaml

148 lines
5.0 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.
---
- name: Create required directories.
become: yes
file:
group: "{{ zuul_user_group }}"
owner: "{{ zuul_user_name }}"
path: "{{ item }}"
state: directory
with_items:
- /etc/zuul
- /etc/zuul/ssl
- /var/log/zuul
- name: Install gearman logging file.
become: yes
template:
dest: "{{ zuul_file_gearman_logging_conf_dest }}"
group: "{{ zuul_file_gearman_logging_conf_group }}"
mode: "{{ zuul_file_gearman_logging_conf_mode }}"
owner: "{{ zuul_file_gearman_logging_conf_owner }}"
src: "{{ zuul_file_gearman_logging_conf_src }}"
register: zuul_file_gearman_logging_conf
notify: Reload zuul-scheduler
- name: Install executor logging file.
become: yes
template:
dest: "{{ zuul_file_executor_logging_conf_dest }}"
group: "{{ zuul_file_executor_logging_conf_group }}"
mode: "{{ zuul_file_executor_logging_conf_mode }}"
owner: "{{ zuul_file_executor_logging_conf_owner }}"
src: "{{ zuul_file_executor_logging_conf_src }}"
register: zuul_file_executor_logging_conf
notify: Reload zuul-executor
- name: Install fingergw logging file.
become: yes
template:
dest: "{{ zuul_file_fingergw_logging_conf_dest }}"
group: "{{ zuul_file_fingergw_logging_conf_group }}"
mode: "{{ zuul_file_fingergw_logging_conf_mode }}"
owner: "{{ zuul_file_fingergw_logging_conf_owner }}"
src: "{{ zuul_file_fingergw_logging_conf_src }}"
register: zuul_file_fingergw_logging_conf
notify: Reload zuul-fingergw
- name: Install merger logging file.
become: yes
template:
dest: "{{ zuul_file_merger_logging_conf_dest }}"
group: "{{ zuul_file_merger_logging_conf_group }}"
mode: "{{ zuul_file_merger_logging_conf_mode }}"
owner: "{{ zuul_file_merger_logging_conf_owner }}"
src: "{{ zuul_file_merger_logging_conf_src }}"
register: zuul_file_merger_logging_conf
notify: Reload zuul-merger
- name: Install scheduler logging file.
become: yes
template:
dest: "{{ zuul_file_scheduler_logging_conf_dest }}"
group: "{{ zuul_file_scheduler_logging_conf_group }}"
mode: "{{ zuul_file_scheduler_logging_conf_mode }}"
owner: "{{ zuul_file_scheduler_logging_conf_owner }}"
src: "{{ zuul_file_scheduler_logging_conf_src }}"
register: zuul_file_scheduler_logging_conf
notify: Reload zuul-scheduler
- name: Install zuul gearman ssl ca configuration.
become: yes
template:
dest: "{{ zuul_file_gearman_ssl_ca_dest }}"
group: "{{ zuul_file_gearman_ssl_ca_group }}"
mode: "{{ zuul_file_gearman_ssl_ca_mode }}"
owner: "{{ zuul_file_gearman_ssl_ca_owner }}"
src: "{{ zuul_file_gearman_ssl_ca_src }}"
register: zuul_file_gearman_ssl_ca
- name: Install zuul gearman ssl cert configuration.
become: yes
template:
dest: "{{ zuul_file_gearman_ssl_cert_dest }}"
group: "{{ zuul_file_gearman_ssl_cert_group }}"
mode: "{{ zuul_file_gearman_ssl_cert_mode }}"
owner: "{{ zuul_file_gearman_ssl_cert_owner }}"
src: "{{ zuul_file_gearman_ssl_cert_src }}"
register: zuul_file_gearman_ssl_cert
- name: Install zuul gearman ssl key configuration.
become: yes
template:
dest: "{{ zuul_file_gearman_ssl_key_dest }}"
group: "{{ zuul_file_gearman_ssl_key_group }}"
mode: "{{ zuul_file_gearman_ssl_key_mode }}"
owner: "{{ zuul_file_gearman_ssl_key_owner }}"
src: "{{ zuul_file_gearman_ssl_key_src }}"
register: zuul_file_gearman_ssl_key
- name: Install web logging file.
become: yes
template:
dest: "{{ zuul_file_web_logging_conf_dest }}"
group: "{{ zuul_file_web_logging_conf_group }}"
mode: "{{ zuul_file_web_logging_conf_mode }}"
owner: "{{ zuul_file_web_logging_conf_owner }}"
src: "{{ zuul_file_web_logging_conf_src }}"
register: zuul_file_web_logging_conf
notify: Reload zuul-web
- name: Install layout configuration.
become: yes
copy:
dest: "{{ zuul_file_layout_dest }}"
group: "{{ zuul_file_layout_group }}"
mode: "{{ zuul_file_layout_mode }}"
owner: "{{ zuul_file_layout_owner }}"
src: "{{ zuul_file_layout_src }}"
register: zuul_file_layout
notify: Reload zuul-scheduler
- name: Install zuul configuration.
become: yes
template:
dest: "{{ zuul_file_zuul_conf_dest }}"
group: "{{ zuul_file_zuul_conf_group }}"
mode: "{{ zuul_file_zuul_conf_mode }}"
owner: "{{ zuul_file_zuul_conf_owner }}"
src: "{{ zuul_file_zuul_conf_src }}"
register: zuul_file_zuul_conf
notify:
- Reload zuul-executor
- Reload zuul-fingergw
- Reload zuul-merger
- Reload zuul-scheduler