Files
openstack-ansible-os_blazar/tasks/main.yml
Damian Dabrowski c9d10f41fa Add uWSGI support to blazar
This patch adds uWSGI support to os_blazar role. All openstack services
should stay behind uWSGI.

It's also required for upcoming TLS backend feature. Blazar does not
have native TLS support so it needs to be handled by uWSGI.

Change-Id: I65511de4d5014a28f0f91536f9dbaf96fcb8e7a2
2023-04-24 12:48:23 +02:00

173 lines
5.6 KiB
YAML

---
# Copyright 2018, taseer94@gmail.com
# All rights reserved.
#
# 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: Gather variables for each operating system
include_vars: "{{ lookup('first_found', params) }}"
vars:
params:
files:
- "{{ ansible_facts['distribution'] | lower }}-{{ ansible_facts['distribution_version'] | lower }}.yml"
- "{{ ansible_facts['distribution'] | lower }}-{{ ansible_facts['distribution_major_version'] | lower }}.yml"
- "{{ ansible_facts['os_family'] | lower }}-{{ ansible_facts['distribution_major_version'] | lower }}.yml"
- "{{ ansible_facts['distribution'] | lower }}.yml"
- "{{ ansible_facts['os_family'] | lower }}.yml"
paths:
- "{{ role_path }}/vars"
tags:
- always
- include_role:
name: openstack.osa.db_setup
apply:
tags:
- common-db
- blazar-config
when:
- _blazar_is_first_play_host
vars:
_oslodb_setup_host: "{{ blazar_db_setup_host }}"
_oslodb_ansible_python_interpreter: "{{ blazar_db_setup_python_interpreter }}"
_oslodb_setup_endpoint: "{{ blazar_galera_address }}"
_oslodb_setup_port: "{{ blazar_galera_port }}"
_oslodb_databases:
- name: "{{ blazar_galera_database }}"
users:
- username: "{{ blazar_galera_user }}"
password: "{{ blazar_container_mysql_password }}"
tags:
- always
- include_role:
name: openstack.osa.mq_setup
apply:
tags:
- common-mq
- blazar-config
when:
- _blazar_is_first_play_host
vars:
_oslomsg_rpc_setup_host: "{{ blazar_oslomsg_rpc_setup_host }}"
_oslomsg_rpc_userid: "{{ blazar_oslomsg_rpc_userid }}"
_oslomsg_rpc_password: "{{ blazar_oslomsg_rpc_password }}"
_oslomsg_rpc_vhost: "{{ blazar_oslomsg_rpc_vhost }}"
_oslomsg_rpc_transport: "{{ blazar_oslomsg_rpc_transport }}"
_oslomsg_notify_setup_host: "{{ blazar_oslomsg_notify_setup_host }}"
_oslomsg_notify_userid: "{{ blazar_oslomsg_notify_userid }}"
_oslomsg_notify_password: "{{ blazar_oslomsg_notify_password }}"
_oslomsg_notify_vhost: "{{ blazar_oslomsg_notify_vhost }}"
_oslomsg_notify_transport: "{{ blazar_oslomsg_notify_transport }}"
tags:
- always
- import_tasks: blazar_pre_install.yml
tags:
- blazar-install
- name: Install the python venv
import_role:
name: "python_venv_build"
vars:
venv_build_constraints: "{{ blazar_git_constraints }}"
venv_build_distro_package_list: "{{ blazar_devel_distro_packages }}"
venv_install_destination_path: "{{ blazar_bin | dirname }}"
venv_install_distro_package_list: "{{ blazar_distro_packages }}"
venv_pip_install_args: "{{ blazar_pip_install_args }}"
venv_pip_packages: "{{ blazar_pip_packages }}"
venv_facts_when_changed:
- section: "blazar"
option: "venv_tag"
value: "{{ blazar_venv_tag }}"
tags:
- blazar-install
- import_tasks: blazar_post_install.yml
tags:
- blazar-config
- import_tasks: blazar_db_setup.yml
when:
- _blazar_is_first_play_host
tags:
- blazar-config
- name: Import uwsgi role
import_role:
name: uwsgi
vars:
uwsgi_services: "{{ uwsgi_blazar_services }}"
uwsgi_install_method: "source"
tags:
- blazar-config
- uwsgi
- name: Run the systemd service role
import_role:
name: systemd_service
vars:
systemd_user_name: "{{ blazar_system_user_name }}"
systemd_group_name: "{{ blazar_system_group_name }}"
systemd_tempd_prefix: openstack
systemd_slice_name: blazar
systemd_lock_path: /var/lock/blazar
systemd_CPUAccounting: true
systemd_BlockIOAccounting: true
systemd_MemoryAccounting: true
systemd_TasksAccounting: true
systemd_services: "{{ filtered_blazar_services }}"
tags:
- blazar-config
- systemd-service
- include_role:
name: openstack.osa.service_setup
apply:
tags:
- common-service
- blazar-config
vars:
_service_adminuri_insecure: "{{ keystone_service_adminuri_insecure }}"
_service_in_ldap: "{{ blazar_service_in_ldap }}"
_service_setup_host: "{{ blazar_service_setup_host }}"
_service_setup_host_python_interpreter: "{{ blazar_service_setup_host_python_interpreter }}"
_service_project_name: "{{ blazar_service_project_name }}"
_service_region: "{{ blazar_service_region }}"
_service_users:
- name: "{{ blazar_service_user_name }}"
password: "{{ blazar_service_password }}"
role: "{{ blazar_service_role_names }}"
_service_endpoints:
- service: "{{ blazar_service_name }}"
interface: "public"
url: "{{ blazar_service_publicurl }}"
- service: "{{ blazar_service_name }}"
interface: "internal"
url: "{{ blazar_service_internalurl }}"
- service: "{{ blazar_service_name }}"
interface: "admin"
url: "{{ blazar_service_adminurl }}"
_service_catalog:
# NOTE(damiandabrowski): remove in 2024.1
- name: "{{ blazar_service_name }}"
type: policy
state: absent
- name: "{{ blazar_service_name }}"
type: "{{ blazar_service_type }}"
description: "{{ blazar_service_description }}"
when:
- _blazar_is_first_play_host
tags:
- always