~openstack-charm-testers/openstack-charm-testing/openstack-monitoring

« back to all changes in this revision

Viewing changes to tools/instance_launch.sh

  • Committer: Edward Hope-Morley
  • Date: 2016-12-05 15:01:45 UTC
  • mfrom: (220.1.37 openstack-charm-testing)
  • Revision ID: edward.hope-morley@canonical.com-20161205150145-5xs44qcs5ifqsnl5
rebase

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
for m in $(seq 1 $p_qty); do
36
36
  server_name="${p_name}$(date +'%H%M%S')"
37
37
  echo ${server_name} ${p_name} ${net_id}
38
 
  nova boot --image ${p_name} --flavor ${flavor} --key_name testkey --nic net-id=${net_id} $server_name
 
38
  nova boot --image ${p_name} --flavor ${flavor} --key-name testkey --nic net-id=${net_id} $server_name
39
39
done
40
40
 
41
41
echo " + Hint:  use ssh -i ~/testkey.pem ubuntu@<ip> to access new instances (may also need a floating IP)."