Hi,
I you want to give it a bash: https://fedoraproject.org/wiki/Test_Day:2012-09-18_OpenStack
I have added a link to some configuring Quantum (very basic).
Please note the keystone quantum user needs to be created:

This can be done by running the below with the service tenant and the admin role ID's.

#!/bin/bash

function get_id () {
    echo `"$@" | grep ' id ' | awk '{print $4}'`
}

SERVICE_TENANT=$1
SERVICE_PASSWORD=servicepass
ADMIN_ROLE=$2

QUANTUM_SERVICE=$(get_id keystone service-create --name=quantum \
                        --type=network \
                        --description="Quantum Service")
QUANTUM_USER=$(get_id keystone user-create --name=quantum \
                                           --pass="$SERVICE_PASSWORD" \
                                           --tenant_id $SERVICE_TENANT \
                                           [email protected])
keystone user-role-add --tenant_id $SERVICE_TENANT \
                       --user_id $QUANTUM_USER \
                       --role_id $ADMIN_ROLE

keystone endpoint-create --region RegionOne --service_id $QUANTUM_SERVICE \
    --publicurl 'http://localhost:9696/' \
    --adminurl 'http://localhost:9696/' \
    --internalurl 'http://localhost:9696/'


Thanks
Gary

--
Mailing list: https://launchpad.net/~quantum-core
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~quantum-core
More help   : https://help.launchpad.net/ListHelp

Reply via email to