From dc85fda07af990e9cb2a8acb5c4a02b56a09b62b Mon Sep 17 00:00:00 2001 From: Paul Bourke Date: Thu, 15 Sep 2016 15:46:56 +0100 Subject: [PATCH] Add a tip at the end of tools/init-runonce Give the user an easy to run way to test their deploy after running init-runonce. TrivialFix Change-Id: I7d984433c8f1b56d0b74be06b3e411044e897790 --- tools/init-runonce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tools/init-runonce b/tools/init-runonce index ffd6dd87ec..7946699f4d 100755 --- a/tools/init-runonce +++ b/tools/init-runonce @@ -98,3 +98,19 @@ if ! openstack flavor list | grep -q m1.tiny; then openstack flavor create --id 4 --ram 8192 --disk 80 --vcpus 4 m1.large openstack flavor create --id 5 --ram 16384 --disk 160 --vcpus 8 m1.xlarge fi + +DEMO_NET_ID=$(openstack network list | awk '/ demo-net / {print $2}') + +cat << EOF + +Done. + +To deploy a demo instance, run: + +openstack server create \\ + --image cirros \\ + --flavor m1.tiny \\ + --key-name mykey \\ + --nic net-id=${DEMO_NET_ID} \\ + demo1 +EOF