Skip to content
Snippets Groups Projects
Commit 81310d40 authored by Matt Crees's avatar Matt Crees Committed by Pierre Riteau
Browse files

Fix cinder etcd3gw backend_url

Multiple parameters in the URL should be prefixed with an ampersand.

Closes-Bug: #2085908
Change-Id: Ia9e43f7043c0757e11e1924c3df9fe16c037d484
(cherry picked from commit d808d716)
parent 95166909
No related branches found
No related tags found
No related merge requests found
...@@ -264,5 +264,5 @@ backend_url = {{ redis_connection_string }} ...@@ -264,5 +264,5 @@ backend_url = {{ redis_connection_string }}
# and https://review.opendev.org/466098 for details # and https://review.opendev.org/466098 for details
# NOTE(jan.gutter): etcd v3.4 removed the default `v3alpha` api_version. Until # NOTE(jan.gutter): etcd v3.4 removed the default `v3alpha` api_version. Until
# tooz defaults to a newer version, we should explicitly specify `v3` # tooz defaults to a newer version, we should explicitly specify `v3`
backend_url = etcd3+{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ etcd_client_port }}?api_version=v3{% if openstack_cacert %}?ca_cert={{ openstack_cacert }}{% endif %} backend_url = etcd3+{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ etcd_client_port }}?api_version=v3{% if openstack_cacert %}&ca_cert={{ openstack_cacert }}{% endif %}
{% endif %} {% endif %}
---
fixes:
- |
Fixes a bug where the etcd3gw ``backend_url`` in cinder.conf would be
invalid when ``openstack_cacert`` was set.
`LP#2085908 <https://bugs.launchpad.net/kolla-ansible/+bug/2085908>`__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment