From 32b48c81a217db57aeb0f4b7366cc343c6042f59 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 11 Feb 2021 11:44:39 +1100 Subject: [PATCH] refstack: use external https for API Currently this variable is setting several URL's used in the config to internal http links (port 8000). This bubbles through to the UI which then can't talk to the API. Emperically, changing these values in the container config and restarting it makes things work. Update this variable to make it talk to external https. Change-Id: If61ec1e0383b98d34d092c55ca0095588487902a --- inventory/service/group_vars/refstack-docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inventory/service/group_vars/refstack-docker.yaml b/inventory/service/group_vars/refstack-docker.yaml index 5866860221..c37b205704 100644 --- a/inventory/service/group_vars/refstack-docker.yaml +++ b/inventory/service/group_vars/refstack-docker.yaml @@ -1,2 +1,2 @@ -refstack_url: 'http://{{ ansible_fqdn }}:8000' +refstack_url: 'https://{{ ansible_fqdn }}' refstack_openid_endpoint: https://openstackid.org