Merge "kolla_url: port is a string"

This commit is contained in:
Zuul 2024-06-18 16:24:00 +00:00 committed by Gerrit Code Review
commit bd286db198
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ def kolla_url(fqdn, protocol, port, path='', context='url'):
"""
fqdn = put_address_in_context(fqdn, context)
port = int(port)
if ((protocol == 'http' and port == 80) or
(protocol == 'https' and port == 443) or

View File

@ -288,6 +288,7 @@
voting: false
files:
- ^ansible/roles/haproxy/
- ^kolla_ansible/kolla_url.py
vars:
external_api_interface_name: vxlan2
external_api_network_prefix: "192.0.3."