Replace keystone CLI with openstack CLI

keystone CLI is removed and now we are using openstack CLI
for identity service

Change-Id: Ifbf21deae7add1d17f0d91a4e7f9a94439f37754
Closes-Bug: #1581810
This commit is contained in:
venkatamahesh 2016-05-16 20:16:25 +05:30
parent e36a99b4b4
commit 9cbfa93775

View File

@ -30,8 +30,8 @@ either with real OpenStack environment or without OpenStack environment.
5. **If you are not using OpenStack, skip this item**. Register Mistral service and Mistral endpoints on Keystone::
$ MISTRAL_URL="http://[host]:[port]/v2"
$ keystone service-create --name mistral --type workflowv2
$ keystone endpoint-create --service_id mistral --publicurl $MISTRAL_URL --adminurl $MISTRAL_URL --internalurl $MISTRAL_URL
$ openstack service create workflow --name mistral --description 'OpenStack Workflow service'
$ openstack endpoint create workflow --publicurl $MISTRAL_URL --adminurl $MISTRAL_URL --internalurl $MISTRAL_URL
6. Configure transport properties in the corresponding config section: for RabbitMQ it is **oslo_messaging_rabbit**::