f1cf81eec2
... because the resource can't be used in networking v2. Also this change removes the deprecated_nic_config_name property from roles data because it is no longer used. Depends-on: https://review.opendev.org/848953 Change-Id: I27be59299262a8bc3a45979b30569fde84011676
17 lines
679 B
YAML
17 lines
679 B
YAML
# This template configures each role to use Vlans on a single nic for
|
|
# each isolated network.
|
|
# This template assumes use of network-isolation.yaml.
|
|
#
|
|
# FIXME: if/when we add functionality to heatclient to include heat
|
|
# environment files we should think about using it here to automatically
|
|
# include network-isolation.yaml.
|
|
|
|
parameter_defaults:
|
|
{%- for role in roles %}
|
|
{%- if 'storage' in role.tags %}
|
|
{{role.name}}NetworkConfigTemplate: 'templates/single_nic_linux_bridge_vlans/single_nic_linux_bridge_vlans_storage.j2'
|
|
{%- else %}
|
|
{{role.name}}NetworkConfigTemplate: 'templates/single_nic_linux_bridge_vlans/single_nic_linux_bridge_vlans.j2'
|
|
{%- endif %}
|
|
{%- endfor %}
|