openstack-ansible-os_placement/tasks/main.yml

119 lines
4.1 KiB
YAML

---
# Copyright 2019, VEXXHOST, 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: Gather variables for each operating system
include_vars: "{{ item }}"
with_first_found:
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml"
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
- "{{ ansible_distribution | lower }}.yml"
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_version.split('.')[0] }}.yml"
- "{{ ansible_os_family | lower }}.yml"
tags:
- always
- name: Fail if service was deployed using a different installation method
fail:
msg: "Switching installation methods for OpenStack services is not supported"
when:
- ansible_local is defined
- ansible_local.openstack_ansible is defined
- ansible_local.openstack_ansible.placement is defined
- ansible_local.openstack_ansible.placement.install_method is defined
- ansible_local.openstack_ansible.placement.install_method != placement_install_method
- name: Gather variables for installation method
include_vars: "{{ placement_install_method }}_install.yml"
tags:
- always
- import_tasks: db_setup.yml
when:
- _placement_is_first_play_host
vars:
_oslodb_setup_host: "{{ placement_db_setup_host }}"
_oslodb_ansible_python_interpreter: "{{ placement_db_setup_python_interpreter }}"
_oslodb_setup_endpoint: "{{ placement_galera_address }}"
_oslodb_setup_port: "{{ placement_galera_port }}"
_oslodb_databases:
- name: "{{ placement_galera_database }}"
users:
- username: "{{ placement_galera_user }}"
password: "{{ placement_galera_password }}"
tags:
- common-db
- placement-config
- import_tasks: placement_pre_install.yml
tags:
- placement-install
- import_tasks: placement_install.yml
tags:
- placement-install
- import_tasks: placement_post_install.yml
tags:
- placement-config
- import_tasks: placement_db_sync.yml
when: _placement_is_first_play_host
tags:
- placement-config
- name: Import uwsgi role
import_role:
name: uwsgi
vars:
uwsgi_services: "{{ uwsgi_placement_services }}"
uwsgi_install_method: "{{ placement_install_method }}"
tags:
- cinder-config
- uwsgi
- import_tasks: service_setup.yml
vars:
_service_adminuri_insecure: "{{ keystone_service_adminuri_insecure }}"
_service_in_ldap: "{{ placement_service_in_ldap }}"
_service_setup_host: "{{ placement_service_setup_host }}"
_service_setup_host_python_interpreter: "{{ placement_service_setup_host_python_interpreter }}"
_service_project_name: "{{ placement_service_project_name }}"
_service_region: "{{ placement_service_region }}"
_service_users:
- name: "{{ placement_service_user_name }}"
password: "{{ placement_service_password }}"
role: "{{ placement_role_name }}"
_service_endpoints:
- service: "{{ placement_service_name }}"
interface: "public"
url: "{{ placement_service_publicurl }}"
- service: "{{ placement_service_name }}"
interface: "internal"
url: "{{ placement_service_internalurl }}"
- service: "{{ placement_service_name }}"
interface: "admin"
url: "{{ placement_service_adminurl }}"
_service_catalog:
- name: "{{ placement_service_name }}"
type: "{{ placement_service_type }}"
description: "{{ placement_service_description }}"
when: _placement_is_first_play_host
tags:
- placement-config
- name: Flush handlers
meta: flush_handlers