Browse code

Expose all versions of Ironic API

In the observable future new versions of the Ironic
API will appear. That's why it's reasonable to expose
the endpoint that will provide access to all versions
of the API.

Closes-Bug: #1229780
Change-Id: I4ec2b45688da3fa6c0d43e8be60885774cfbffd6

Roman Prykhodchenko authored on 2013/09/25 01:09:26
Showing 1 changed files
... ...
@@ -148,9 +148,9 @@ create_ironic_accounts() {
148 148
             keystone endpoint-create \
149 149
                 --region RegionOne \
150 150
                 --service_id $IRONIC_SERVICE \
151
-                --publicurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT/v1/" \
152
-                --adminurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT/v1/" \
153
-                --internalurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT/v1/"
151
+                --publicurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT" \
152
+                --adminurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT" \
153
+                --internalurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT"
154 154
         fi
155 155
     fi
156 156
 }