Reduce resources required to launch example

Use m1.small and node-count of 2

Change-Id: I28eca4b921dbd9d38de4675b7515f8bf6e2f45f9
This commit is contained in:
Steven Dake 2015-01-20 05:41:52 -07:00
parent 816d97d6a7
commit 56ea382f82
1 changed files with 2 additions and 2 deletions

View File

@ -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::