openstack-ansible-os_blazar/tasks/main.yml

214 lines
7.0 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
- name: Including osa.db_setup role
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
- name: Including osa.mq_setup role
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_rpc_policies: "{{ blazar_oslomsg_rpc_policies }}"
_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 }}"
_oslomsg_notify_policies: "{{ blazar_oslomsg_notify_policies }}"
_oslomsg_notify_configure: "{{ blazar_oslomsg_notify_configure }}"
tags:
- always
- name: Importing blazar_pre_install tasks
import_tasks: blazar_pre_install.yml
tags:
- blazar-install
- name: Create and install SSL certificates
include_role:
name: pki
tasks_from: main_certs.yml
apply:
tags:
- blazar-config
- pki
vars:
pki_setup_host: "{{ blazar_pki_setup_host }}"
pki_dir: "{{ blazar_pki_dir }}"
pki_create_certificates: "{{ blazar_user_ssl_cert is not defined and blazar_user_ssl_key is not defined }}"
pki_regen_cert: "{{ blazar_pki_regen_cert }}"
pki_certificates: "{{ blazar_pki_certificates }}"
pki_install_certificates: "{{ blazar_pki_install_certificates }}"
when:
- blazar_backend_ssl
tags:
- always
- 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
- name: Importing blazar_post_install tasks
import_tasks: blazar_post_install.yml
tags:
- blazar-config
- post-install
- name: Importing blazar_db_setup tasks
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_dir: /run/lock/
systemd_service_cpu_accounting: true
systemd_service_block_io_accounting: true
systemd_service_memory_accounting: true
systemd_service_tasks_accounting: true
systemd_services: "{{ filtered_blazar_services }}"
tags:
- blazar-config
- systemd-service
- name: Including osa.service_setup role
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
- name: Create required Nova aggregates
include_role:
name: openstack.osa.openstack_resources
vars:
openstack_resources_compute:
aggregates:
- name: "{{ blazar_nova_aggregate_name }}"
exclusive: "no"
when:
- blazar_nova_aggregate_name