Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Merge "Remove NovaVncProxyNetwork from ServiceNetMap" into stable/wal…
Browse files Browse the repository at this point in the history
…laby
  • Loading branch information
Zuul authored and openstack-gerrit committed Jul 2, 2021
2 parents f619c7c + 2f0689d commit ee71cd7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion network/service_net_map.j2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ parameters:
NovaApiNetwork: {{ _service_nets.get('internal_api', 'ctlplane') }}
PlacementNetwork: {{ _service_nets.get('internal_api', 'ctlplane') }}
NovaMetadataNetwork: {{ _service_nets.get('internal_api', 'ctlplane') }}
NovaVncProxyNetwork: {{ _service_nets.get('internal_api', 'ctlplane') }}
NovaLibvirtNetwork: {{ _service_nets.get('internal_api', 'ctlplane') }}
NovajoinNetwork: {{ _service_nets.get('internal_api', 'ctlplane') }}
SwiftStorageNetwork: {{ _service_nets.get('storage_mgmt', 'ctlplane') }}
Expand Down Expand Up @@ -175,6 +174,12 @@ resources:
{%- for network in networks if network.enabled|default(true) %}
{{network.name_lower}}: {get_param: {{network.name}}NetName}
{%- endfor %}
- if:
# (mschuppert) this is to keep NovaVncProxyNetwork and NovaLibvirtNetwork
# in sync to not break VNC console
- not: {equals : [{get_param: [ServiceNetMap, NovaLibvirtNetwork]}, '']}
- NovaVncProxyNetwork: { get_param: [ServiceNetMap, NovaLibvirtNetwork] }
- NovaVncProxyNetwork: { get_param: [ServiceNetMapDefaults, NovaLibvirtNetwork] }
- map_replace:
- {get_param: ServiceNetMap}
- keys: {get_param: ServiceNetMapDeprecatedMapping}
Expand Down

0 comments on commit ee71cd7

Please sign in to comment.