From 16af388ece504b47e977120b28cb25a7239592cf Mon Sep 17 00:00:00 2001 From: Andrii Ostapenko Date: Sun, 11 Aug 2019 11:41:07 -0500 Subject: [PATCH] Don't use quotes in glance swift configuration glance_store uses bare ConfigParser for swift configuration, that ceased to strip quotes in PY3. That leads to invalid auth parameters (e.g. 'project_domain_id': '""') and failure to authenticate. Current CI process does not hit this issue because Swift backend is not used. Change-Id: I6d2c129e6747a3c5fcd2da0c88b0a2135775a914 Closes-bug: #1839772 --- glance/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glance/values.yaml b/glance/values.yaml index 17bdf4dfe2..333e07d726 100644 --- a/glance/values.yaml +++ b/glance/values.yaml @@ -431,8 +431,8 @@ conf: project_domain_name = {{ .Values.endpoints.identity.auth.glance.project_domain_name }} auth_version = 3 # NOTE(portdirect): https://bugs.launchpad.net/glance-store/+bug/1620999 - project_domain_id = "" - user_domain_id = "" + project_domain_id = + user_domain_id = {{- end -}} rabbitmq: #NOTE(rk760n): adding rmq policy to mirror messages from notification queues and set expiration time for the ones