File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -526,6 +526,7 @@ zookeeper_quorum_port: "3888"
526
526
527
527
zun_api_port : " 9517"
528
528
zun_wsproxy_port : " 6784"
529
+ zun_wsproxy_protocol : " {{ 'wss' if kolla_enable_tls_external | bool else 'ws' }}"
529
530
zun_cni_daemon_port : " 9036"
530
531
531
532
vitrage_api_port : " 8999"
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ host_shared_with_nova = {{ inventory_hostname in groups['compute'] and enable_no
118
118
[websocket_proxy]
119
119
wsproxy_host = {{ api_interface_address }}
120
120
wsproxy_port = {{ zun_wsproxy_port }}
121
- base_url = ws ://{{ kolla_external_fqdn | put_address_in_context('url') }}:{{ zun_wsproxy_port }}
121
+ base_url = {{ zun_wsproxy_protocol }} ://{{ kolla_external_fqdn | put_address_in_context('url') }}:{{ zun_wsproxy_port }}
122
122
123
123
[docker]
124
124
api_url = tcp://{{ api_interface_address | put_address_in_context('url') }}:2375
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Fixes unable to connect to zun console when
5
+ ``kolla_enable_tls_external`` is true.
6
+ Access to console of any zun container fails when
7
+ ``kolla_enable_tls_external`` is true.
8
+ This fix sets the protocol for wsproxy ``base_url``
9
+ in ``zun.conf`` according to the value of
10
+ ``kolla_enable_tls_external``
11
+ `LP#1957117 <https://launchpad.net/bugs/1957117>`__
You can’t perform that action at this time.
0 commit comments