Skip to content
Snippets Groups Projects
Commit e35e4f93 authored by Steven Dake's avatar Steven Dake
Browse files

Properly create endpoints for Nova services

The endpoints for Nova services needed to be properly created for ports
8773 (ec2/ec2) and 8774(nova/compute) and 8774(novav3/computev3).

Change-Id: I5e1931d2e7ea35f741ab73b070e24926a3763054
parent a14b8048
No related branches found
No related tags found
No related merge requests found
...@@ -16,9 +16,21 @@ crux user-create --update \ ...@@ -16,9 +16,21 @@ crux user-create --update \
-r admin -r admin
crux endpoint-create --remove-all \ crux endpoint-create --remove-all \
-n glance -t image \ -n ec2 -t ec2 \
-I "http://${NOVA_API_SERVICE_HOST}:9292" \ -I "http://${NOVA_EC2_API_SERVICE_HOST}:8773/services/Cloud" \
-P "http://${PUBLIC_IP}:9292" \ -P "http://${PUBLIC_IP}:8773/services/Cloud" \
-A "http://${NOVA_API_SERVICE_HOST}:9292" -A "http://${NOVA_EC2_API_SERVICE_HOST}:8773/services/Admin"
crux endpoint-create --remove-all \
-n nova -t compute \
-I "http://${NOVA_API_SERVICE_HOST}:8774/v2/\$(tenant_id)s" \
-P "http://${PUBLIC_IP}:8774/v2/\$(tenant_id)s" \
-A "http://${NOVA_API_SERVICE_HOST}:8774/v2/\$(tenant_id)s"
crux endpoint-create --remove-all \
-n novav3 -t computev3 \
-I "http://${NOVA_API_SERVICE_HOST}:8774/v3" \
-P "http://${PUBLIC_IP}:8774/v3" \
-A "http://${NOVA_API_SERVICE_HOST}:8774/v3"
exec /usr/bin/nova-api exec /usr/bin/nova-api
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment