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
This commit is contained in:
Paul Bourke 2016-09-15 15:46:56 +01:00
parent bac19675ed
commit dc85fda07a
1 changed files with 16 additions and 0 deletions

View File

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