Files
openstack-ansible-os_panko/tasks/main.yml
Jonathan Rosser 73863b9083 Use ansible_facts[] instead of fact variables
See https://github.com/ansible/ansible/issues/73654

Change-Id: I1f848a2d08be7975a1bde9832fea1e29f5e7b410
2021-03-16 08:14:58 +00:00

140 lines
4.6 KiB
YAML

---
# Copyright 2015, Rackspace US, 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: Fail if our required secrets are not present
fail:
msg: "Please set the {{ item }} variable prior to applying this role."
when: (item is undefined) or (item is none)
with_items: "{{ panko_required_secrets }}"
tags:
- always
- name: Gather variables for each operating system
include_vars: "{{ item }}"
with_first_found:
- "{{ 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"
tags:
- always
- import_tasks: db_setup.yml
when:
- _panko_is_first_play_host
vars:
_oslodb_setup_host: "{{ panko_db_setup_host }}"
_oslodb_ansible_python_interpreter: "{{ panko_db_setup_python_interpreter }}"
_oslodb_setup_endpoint: "{{ panko_db_address }}"
_oslodb_setup_port: "{{ panko_galera_port }}"
_oslodb_databases:
- name: "{{ panko_database_name }}"
users:
- username: "{{ panko_database_user }}"
password: "{{ panko_container_db_password }}"
tags:
- common-db
- panko-config
- import_tasks: panko_pre_install.yml
tags:
- panko-install
- name: Install the python venv
import_role:
name: "python_venv_build"
vars:
venv_python_executable: "{{ panko_venv_python_executable }}"
venv_build_constraints: "{{ panko_git_constraints }}"
venv_build_distro_package_list: "{{ panko_devel_distro_packages }}"
venv_install_destination_path: "{{ panko_bin | dirname }}"
venv_install_distro_package_list: "{{ panko_distro_packages }}"
venv_pip_install_args: "{{ panko_pip_install_args }}"
venv_pip_packages: "{{ panko_pip_packages }}"
venv_facts_when_changed:
- section: "panko"
option: "venv_tag"
value: "{{ panko_venv_tag }}"
tags:
- panko-install
- import_tasks: panko_post_install.yml
tags:
- panko-config
- name: Run the systemd service role
import_role:
name: systemd_service
vars:
systemd_user_name: "{{ panko_system_user_name }}"
systemd_group_name: "{{ panko_system_group_name }}"
systemd_tempd_prefix: openstack
systemd_slice_name: panko
systemd_lock_path: /var/lock/panko
systemd_CPUAccounting: true
systemd_BlockIOAccounting: true
systemd_MemoryAccounting: true
systemd_TasksAccounting: true
systemd_services: "{{ filtered_panko_services }}"
tags:
- panko-config
- systemd-service
- import_tasks: panko_db_sync.yml
when: _panko_is_first_play_host
tags:
- panko-config
- name: Import uwsgi role
import_role:
name: uwsgi
vars:
uwsgi_services: "{{ uwsgi_panko_services }}"
uwsgi_install_method: "source"
tags:
- panko-config
- uwsgi
- import_tasks: service_setup.yml
vars:
_service_adminuri_insecure: "{{ keystone_service_adminuri_insecure }}"
_service_in_ldap: "{{ panko_service_in_ldap }}"
_service_setup_host: "{{ panko_service_setup_host }}"
_service_setup_host_python_interpreter: "{{ panko_service_setup_host_python_interpreter }}"
_service_project_name: "{{ panko_service_tenant_name }}"
_service_region: "{{ panko_service_region }}"
_service_users:
- name: "{{ panko_service_user_name }}"
password: "{{ panko_service_password }}"
role: "{{ panko_role_name }}"
_service_endpoints:
- service: "{{ panko_service_name }}"
interface: "public"
url: "{{ panko_service_publicurl }}"
- service: "{{ panko_service_name }}"
interface: "internal"
url: "{{ panko_service_internalurl }}"
- service: "{{ panko_service_name }}"
interface: "admin"
url: "{{ panko_service_adminurl }}"
_service_catalog:
- name: "{{ panko_service_name }}"
type: "{{ panko_service_type }}"
description: "{{ panko_service_description }}"
when: _panko_is_first_play_host
tags:
- panko-config