Files
openstack-ansible/tests/roles/bootstrap-host/vars/main.yml
Guilherme Steinmüller 8393ad3cbc Add support to deploy placement
Depends-On: I7600f1750538335c1348e7d042e6bf450910e12c
Depends-On: Id9bd94923e05b3911a9dfd4e10c43f4c0ab81b9b
Depends-On: I1ee165b06fe6c6a840784565a7a661b11bf9ebff
Depends-On: I4619d333187a0e96c1b60fe2f203df0838c12059
Change-Id: Iae04e60622d1ecde78676c105e35655541065d04
2019-05-08 20:25:25 +00:00

55 lines
1.9 KiB
YAML

---
# Copyright 2017, 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.
bootstrap_host_special_word_list:
- aio
- distro
- lxc
- metal
- nspawn
- octaviav2
- proxy
- source
- telemetry
- translations
bootstrap_host_services: >-
{%- set scenario_list = (bootstrap_host_scenario.split('_') | reject('equalto', '')) | list %}
{%- set service_list = ['keystone'] %}
{%- set service_list_extra = scenario_list | difference(bootstrap_host_special_word_list) %}
{%- if 'metal' not in scenario_list %}
{%- set _ = service_list.append('haproxy') %}
{%- endif %}
{%- if 'aio' in scenario_list or 'translations' in scenario_list %}
{%- set _ = service_list.extend(['cinder', 'glance', 'neutron', 'nova', 'placement']) %}
{%- if 'metal' not in scenario_list %}
{%- set _ = service_list.append('horizon') %}
{%- endif %}
{%- endif %}
{%- if 'ironic' in scenario_list %}
{%- set _ = service_list.extend(['swift']) %}
{%- endif %}
{%- if 'octaviav2' in scenario_list %}
{%- set _ = service_list.extend(['octavia']) %}
{%- endif %}
{%- if 'telemetry' in scenario_list %}
{%- set _ = service_list.extend(['aodh', 'ceilometer', 'gnocchi', 'panko']) %}
{%- endif %}
{%- if 'translations' in scenario_list %}
{%- set _ = service_list.extend(['designate', 'heat', 'magnum', 'sahara', 'swift', 'trove']) %}
{%- endif %}
{%- set _ = service_list.extend(service_list_extra) %}
{{- (service_list | unique) | sort }}