From f01d5d00600649e32acbc78ff16b30a59391ab5d Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Mon, 4 Sep 2017 11:03:53 +0200 Subject: [PATCH] Fix endpoint path According to the documentation [1], the endpoint for designate/dns contains neither a version nor a tenant_id. The default value ('') is correct. [1] https://docs.openstack.org/project-install-guide/dns/ocata/install-ubuntu.html --- attributes/default.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/attributes/default.rb b/attributes/default.rb index 57bda11..39adc15 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -23,7 +23,6 @@ # openstack dns-api service endpoints (used by users and services) default['openstack']['endpoints'][ep_type]['dns-api']['host'] = '127.0.0.1' default['openstack']['endpoints'][ep_type]['dns-api']['scheme'] = 'http' - default['openstack']['endpoints'][ep_type]['dns-api']['path'] = '/v1/%(tenant_id)s' default['openstack']['endpoints'][ep_type]['dns-api']['port'] = 9001 end default['openstack']['bind_service']['all']['dns-api']['host'] = '127.0.0.1'