e65e059852
Previously, the Heat demo suffered from the following limitations: 1. The number of Nova instances to spawn and the image flavor were hard coded in the Heat template. 2. No outputs existed. This required users to run nova-list to obtain the IP's of VMs. 3. No documentation existed. This patch addresses the above limitations. Change-Id: I495aa9c73a91200c01cecc1719ee5532c1f6c9cb
12 lines
540 B
Plaintext
Executable File
12 lines
540 B
Plaintext
Executable File
VM_COUNT=3
|
|
IMAGE_FLAVOR=m1.small
|
|
PUBLIC_NET_ID=$(neutron net-list | grep public | awk '{print $2}')
|
|
DEMO_NET_ID=$(neutron net-list | grep demo | awk '{print $2}')
|
|
DEMO_SUBNET_ID=$(neutron net-list | grep demo | awk '{print $6}')
|
|
|
|
echo Public net id is $PUBLIC_NET_ID
|
|
echo Demo net id is $DEMO_NET_ID
|
|
echo Demo subnet id is $DEMO_SUBNET_ID
|
|
|
|
heat stack-create steak --template-file steak-rg.yaml --parameters="vm_count=$VM_COUNT;image_flavor=$IMAGE_FLAVOR;public_net_id=$PUBLIC_NET_ID;demo_net_id=$DEMO_NET_ID;demo_subnet_id=$DEMO_SUBNET_ID"
|