You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.4 KiB
29 lines
1.4 KiB
# *************************************************************************** |
|
# DEPRECATED: Use tripleo-heat-templates/environments/network-isolation.yaml |
|
# and define the needed networks in your custom role file. |
|
# *************************************************************************** |
|
# Enable the creation of a system management network. This |
|
# creates a Neutron network for isolated Overcloud |
|
# system management traffic and configures each role to |
|
# assign a port (related to that role) on that network. |
|
# Note that the basic sample NIC configuration templates |
|
# do not include the management network, see the |
|
# comments in the sample network config templates in |
|
# network/config/ for an example. |
|
resource_registry: |
|
OS::TripleO::Network::Management: ../network/management.yaml |
|
|
|
# Port assignments for the controller role |
|
OS::TripleO::Controller::Ports::ManagementPort: ../network/ports/management.yaml |
|
|
|
# Port assignments for the compute role |
|
OS::TripleO::Compute::Ports::ManagementPort: ../network/ports/management.yaml |
|
|
|
# Port assignments for the ceph storage role |
|
OS::TripleO::CephStorage::Ports::ManagementPort: ../network/ports/management.yaml |
|
|
|
# Port assignments for the swift storage role |
|
OS::TripleO::ObjectStorage::Ports::ManagementPort: ../network/ports/management.yaml |
|
|
|
# Port assignments for the block storage role |
|
OS::TripleO::BlockStorage::Ports::ManagementPort: ../network/ports/management.yaml
|
|
|