Creating policy target based on instance name

Closes-Bug: 1477404

Change-Id: Icc52e8e6850d8f25af552feebe54c92b5657bbf5
This commit is contained in:
ank 2015-08-14 12:09:04 +05:30
parent 5e8f3da385
commit 5681451c73
1 changed files with 3 additions and 2 deletions

View File

@ -374,12 +374,13 @@ class LaunchInstance(workflows.Workflow):
instance_count = int(context['count'])
count = 1
while count <= instance_count:
ep = client.pt_create(
request, policy_target_group_id=policy_target_id)
if instance_count == 1:
instance_name = context['name']
else:
instance_name = context['name'] + str(count)
ep = client.pt_create(
request, policy_target_group_id=policy_target_id,
name=instance_name[:41] + "_gbpui")
api.nova.server_create(request,
instance_name,
image_id,