Update devstack endpoint creation to include v1

Currently with v1 missing, the barbican client doesn't include the /v1
part of the endpoint and gets 404's for all requests.

Change-Id: I14e6083084e4c05998dea2cacb5ac921c340d059
This commit is contained in:
Dougal Matthews 2014-07-07 15:15:12 +01:00
parent 68a2309949
commit 81208f852f

@ -184,9 +184,9 @@ function create_barbican_accounts {
keystone endpoint-create \
--region RegionOne \
--service_id $BARBICAN_SERVICE \
--publicurl "http://$SERVICE_HOST:9311" \
--adminurl "http://$SERVICE_HOST:9312" \
--internalurl "http://$SERVICE_HOST:9311"
--publicurl "http://$SERVICE_HOST:9311/v1" \
--adminurl "http://$SERVICE_HOST:9312/v1" \
--internalurl "http://$SERVICE_HOST:9311/v1"
fi
}