openstack-ansible/playbooks/setup-openstack.yml
Dmitriy Rabotyagov 930f799141 Move Murano/Senlin/Sahara to Inactive state
Due to the TC decision these services are marked as Inactive for 2024.1
release, which means we need to remove roles for these services from
our releasing as well.

Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-os_senlin/+/916892
Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-os_murano/+/916891
Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-os_sahara/+/916890
Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-openstack_hosts/+/918159
Change-Id: I8007204ad2ae892935e0aa10c3f28b6a8fe99be5
2024-05-04 12:13:41 +00:00

113 lines
3.5 KiB
YAML

---
# Copyright 2014, 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: Importing pre hook playbook
import_playbook: "{{ pre_setup_openstack_hook | default('hook-dummy.yml') }}"
- name: Importing os-keystone-install playbook
import_playbook: os-keystone-install.yml
- name: Importing os-barbican-install playbook
import_playbook: os-barbican-install.yml
- name: Importing os-placement-install playbook
import_playbook: os-placement-install.yml
- name: Importing os-glance-install playbook
import_playbook: os-glance-install.yml
- name: Importing os-cinder-install playbook
import_playbook: os-cinder-install.yml
- name: Importing os-nova-install playbook
import_playbook: os-nova-install.yml
- name: Importing os-neutron-install playbook
import_playbook: os-neutron-install.yml
- name: Importing os-heat-install playbook
import_playbook: os-heat-install.yml
- name: Importing os-horizon-install playbook
import_playbook: os-horizon-install.yml
- name: Importing os-designate-install playbook
import_playbook: os-designate-install.yml
- name: Importing os-swift-install playbook
import_playbook: os-swift-install.yml
- name: Importing os-adjutant-install playbook
import_playbook: os-adjutant-install.yml
- name: Importing os-gnocchi-install playbook
import_playbook: os-gnocchi-install.yml
- name: Importing os-ceilometer-install playbook
import_playbook: os-ceilometer-install.yml
- name: Importing os-aodh-install playbook
import_playbook: os-aodh-install.yml
- name: Importing os-cloudkitty-install playbook
import_playbook: os-cloudkitty-install.yml
- name: Importing os-ironic-install playbook
import_playbook: os-ironic-install.yml
- name: Importing os-magnum-install playbook
import_playbook: os-magnum-install.yml
- name: Importing os-trove-install playbook
import_playbook: os-trove-install.yml
- name: Importing os-octavia-install playbook
import_playbook: os-octavia-install.yml
- name: Importing os-tacker-install playbook
import_playbook: os-tacker-install.yml
- name: Importing os-blazar-install playbook
import_playbook: os-blazar-install.yml
- name: Importing os-masakari-install playbook
import_playbook: os-masakari-install.yml
- name: Importing os-manila-install playbook
import_playbook: os-manila-install.yml
- name: Importing os-mistral-install playbook
import_playbook: os-mistral-install.yml
- name: Importing os-zun-install playbook
import_playbook: os-zun-install.yml
# This is not an OpenStack service, but integrates with Keystone and must be
# deployed afterward.
- name: Importing ceph-rgw-install playbook
import_playbook: ceph-rgw-install.yml
- name: Importing os-skyline-install playbook
import_playbook: os-skyline-install.yml
- name: Importing os-tempest-install playbook
import_playbook: os-tempest-install.yml
- name: Importing os-rally-install playbook
import_playbook: os-rally-install.yml
- name: Importing post hook playbook
import_playbook: "{{ post_setup_openstack_hook | default('hook-dummy.yml') }}"