blob: de8e65e478d465d3752d058c98cb1604b4fc59fc [file] [log] [blame]
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +02001{% from 'cookied-mcp-pike-ovs/underlay.yaml' import HOSTNAME_CFG01 with context %}
2{% from 'cookied-mcp-pike-ovs/underlay.yaml' import HOSTNAME_CTL01 with context %}
3{% from 'cookied-mcp-pike-ovs/underlay.yaml' import HOSTNAME_CTL02 with context %}
4{% from 'cookied-mcp-pike-ovs/underlay.yaml' import HOSTNAME_CTL03 with context %}
5{% from 'cookied-mcp-pike-ovs/underlay.yaml' import HOSTNAME_GTW01 with context %}
Oleksii Butenko2e8e8ee2018-06-21 11:10:13 +03006{% from 'cookied-mcp-pike-ovs/underlay.yaml' import LAB_CONFIG_NAME with context %}
7{% from 'cookied-mcp-pike-ovs/underlay.yaml' import DOMAIN_NAME with context %}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +02008{% from 'shared-salt.yaml' import IPV4_NET_EXTERNAL_PREFIX with context %}
9{% from 'shared-salt.yaml' import IPV4_NET_TENANT_PREFIX with context %}
Oleksii Butenko2e8e8ee2018-06-21 11:10:13 +030010{% set LAB_CONFIG_NAME = os_env('LAB_CONFIG_NAME') %}
Dennis Dmitriev4034db02018-08-26 21:50:13 +030011
Oleksii Butenko5cd0a162018-06-14 18:18:10 +030012{% import 'shared-salt.yaml' as SHARED with context %}
Dennis Dmitriev4034db02018-08-26 21:50:13 +030013{% import 'shared-openstack.yaml' as SHARED_OPENSTACK with context %}
Oleksii Butenko5cd0a162018-06-14 18:18:10 +030014
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020015# Install OpenStack control services
16
sgudz62df2fc2018-10-09 12:26:19 +030017{{ SHARED_OPENSTACK.MACRO_INSTALL_KEYSTONE() }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020018
Dennis Dmitriev4034db02018-08-26 21:50:13 +030019{{ SHARED_OPENSTACK.MACRO_INSTALL_GLANCE() }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020020
Dennis Dmitriev4034db02018-08-26 21:50:13 +030021{{ SHARED_OPENSTACK.MACRO_INSTALL_NOVA() }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020022
Oleksii Butenko7b0f3672018-10-17 09:38:33 +030023{{ SHARED_OPENSTACK.MACRO_INSTALL_CINDER(INSTALL_VOLUME=true) }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020024
Dennis Dmitriev4034db02018-08-26 21:50:13 +030025{{ SHARED_OPENSTACK.MACRO_INSTALL_NEUTRON() }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020026
Dennis Dmitriev4034db02018-08-26 21:50:13 +030027{{ SHARED_OPENSTACK.MACRO_INSTALL_HEAT() }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020028
Oleksii Butenko7b0f3672018-10-17 09:38:33 +030029{{ SHARED_OPENSTACK.MACRO_INSTALL_DESIGNATE(INSTALL_POWERDNS=true) }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020030
Oleksii Butenko7b0f3672018-10-17 09:38:33 +030031{{ SHARED_OPENSTACK.MACRO_INSTALL_HORIZON() }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020032
Oleksii Butenko7b0f3672018-10-17 09:38:33 +030033{{ SHARED_OPENSTACK.MACRO_INSTALL_COMPUTE(CELL_MAPPING=true) }}
Dennis Dmitriev67aea4a2018-03-14 14:20:20 +020034
Oleksii Butenko7b0f3672018-10-17 09:38:33 +030035{{ SHARED_OPENSTACK.MACRO_INSTALL_MANILA() }}