From 9cbfa93775dd2d43ecad279a67e5056034c537a5 Mon Sep 17 00:00:00 2001 From: venkatamahesh Date: Mon, 16 May 2016 20:16:25 +0530 Subject: [PATCH] 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 --- doc/source/guides/configuration_guide.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/guides/configuration_guide.rst b/doc/source/guides/configuration_guide.rst index 2e8f72e7e..69f3b4447 100644 --- a/doc/source/guides/configuration_guide.rst +++ b/doc/source/guides/configuration_guide.rst @@ -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**::