kingbird/tools/opnfv/openrc
Dimitri Mazmanov c0d6069d6f Dynamically get public and internal IPs for Kingbird endpoints
In order to keep opnfv installation flexible, the endpoints IPs are
now fetched from the endpoint list. Currently I'm using keystone as
a required service to get the IP addresses for public, admin and
internal endpoints.

Change-Id: Ib110ace9ccff95dd03287b9d29dfee89a14dd6ce
2016-07-13 11:25:42 +02:00

20 lines
568 B
Bash

#!/bin/sh
export LC_ALL=C
export OS_NO_CACHE='true'
export OS_TENANT_NAME='admin'
export OS_PROJECT_NAME='admin'
export OS_USERNAME='admin'
export OS_PASSWORD='admin'
export OS_AUTH_URL='http://192.168.0.2:5000/'
export OS_DEFAULT_DOMAIN='default'
export OS_AUTH_STRATEGY='keystone'
export OS_REGION_NAME='RegionOne'
export CINDER_ENDPOINT_TYPE='internalURL'
export GLANCE_ENDPOINT_TYPE='internalURL'
export KEYSTONE_ENDPOINT_TYPE='internalURL'
export NOVA_ENDPOINT_TYPE='internalURL'
export NEUTRON_ENDPOINT_TYPE='internalURL'
export OS_ENDPOINT_TYPE='internalURL'