attempt to write a script that exercises nova cli
diff --git a/exercise.sh b/exercise.sh
index d6771b0..b7c42d7 100755
--- a/exercise.sh
+++ b/exercise.sh
@@ -49,8 +49,26 @@
export NOVA_VERSION=1.1
-# Servers
-# =======
+# Launching a server
+# ==================
-# retreive a list of servers for our tenant
+# List servers for tenant:
nova list
+
+# List of flavors:
+nova flavor-list
+
+# Images
+# ------
+
+# Nova has a **deprecated** way of listing images.
+nova image-list
+
+# But we recommend using glance directly
+glance index
+
+# show details of the active servers::
+#
+# nova show 1234
+#
+nova list | grep ACTIVE | cut -d \| -f2 | xargs -n1 nova show