From 56ea382f829d828737a0678cc4811d5e37c5d099 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 20 Jan 2015 05:41:52 -0700 Subject: [PATCH] Reduce resources required to launch example Use m1.small and node-count of 2 Change-Id: I28eca4b921dbd9d38de4675b7515f8bf6e2f45f9 --- doc/source/dev/dev-quickstart.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst index 61211a9a17..0a8278646f 100644 --- a/doc/source/dev/dev-quickstart.rst +++ b/doc/source/dev/dev-quickstart.rst @@ -276,13 +276,13 @@ Magnum in which way to construct a bay.:: magnum baymodel-create --name testbaymodel --image-id fedora21-atomic \ --keypair-id testkey \ --external-network-id $NIC_ID \ - --dns-nameserver 8.8.8.8 --flavor-id m1.medium + --dns-nameserver 8.8.8.8 --flavor-id m1.small Next create a bay. Use the baymodel UUID as a template for bay creation. This bay will result in one master kubernetes node and three minion nodes.:: BAYMODEL_UUID=$(magnum baymodel-list | awk '/ testbaymodel /{print $2}') - magnum bay-create --name testbay --baymodel-id $BAYMODEL_UUID --node-count 3 + magnum bay-create --name testbay --baymodel-id $BAYMODEL_UUID --node-count 2 The existing bays can be listed as follows::