From 0e499c7ac8834bc6a1d5057690b8b2529207e1c0 Mon Sep 17 00:00:00 2001 From: "sharat.sharma" Date: Fri, 27 May 2016 14:34:20 +0530 Subject: [PATCH] Added "\" In quickstart guide In the Create node group templates chapter, there was a "\" missing. Added the missing slash. Change-Id: I8dc4f3fbc5fd1bfe3821918d6040ea5adb87514b Closes-bug: #1586271 --- doc/source/devref/quickstart.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/devref/quickstart.rst b/doc/source/devref/quickstart.rst index 80431b77..209ded04 100644 --- a/doc/source/devref/quickstart.rst +++ b/doc/source/devref/quickstart.rst @@ -183,7 +183,7 @@ Create a master node group template with the command: $ openstack dataprocessing node group template create \ --name vanilla-default-master --plugin vanilla \ - --version --processes namenode resourcemanager + --version --processes namenode resourcemanager \ --flavor 2 --auto-security-group --floating-ip-pool +---------------------+--------------------------------------+ | Field | Value | @@ -212,7 +212,7 @@ Create a worker node group template with the command: $ openstack dataprocessing node group template create \ --name vanilla-default-worker --plugin vanilla \ - --version --processes datanode nodemanager + --version --processes datanode nodemanager \ --flavor 2 --auto-security-group --floating-ip-pool +---------------------+--------------------------------------+ | Field | Value | @@ -321,7 +321,7 @@ Create a cluster template with the command: .. sourcecode:: console $ openstack dataprocessing cluster template create \ - --name vanilla-default-cluster + --name vanilla-default-cluster \ --node-groups vanilla-default-master:1 vanilla-default-worker:3 +----------------+----------------------------------------------------+ @@ -396,7 +396,7 @@ Create a cluster with the command: .. sourcecode:: console $ openstack dataprocessing cluster create --name my-cluster-1 \ - --cluster-template vanilla-default-cluster --user-keypair my_stack + --cluster-template vanilla-default-cluster --user-keypair my_stack \ --neutron-network private --image sahara-vanilla-latest-ubuntu +----------------------------+----------------------------------------------------+