summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/tasks/elb.yml
diff options
context:
space:
mode:
authorMichael Gugino <mgugino@redhat.com>2017-09-29 15:37:14 -0400
committerMichael Gugino <mgugino@redhat.com>2017-09-29 15:38:14 -0400
commit9a956ef26a21bc2e1380d5a579d3435181f6a0f6 (patch)
tree178b9057c803041fd85b198a5bcadf98d38a04d5 /roles/openshift_aws/tasks/elb.yml
parent4c7d5c40c2820f83ad10eeb30b7b4cc07c0ef700 (diff)
downloadopenshift-9a956ef26a21bc2e1380d5a579d3435181f6a0f6.tar.gz
openshift-9a956ef26a21bc2e1380d5a579d3435181f6a0f6.tar.bz2
openshift-9a956ef26a21bc2e1380d5a579d3435181f6a0f6.tar.xz
openshift-9a956ef26a21bc2e1380d5a579d3435181f6a0f6.zip
Fix provisiong scale group and elb logic
Some changes necessary to support provisioning and scale group logic
Diffstat (limited to 'roles/openshift_aws/tasks/elb.yml')
-rw-r--r--roles/openshift_aws/tasks/elb.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/openshift_aws/tasks/elb.yml b/roles/openshift_aws/tasks/elb.yml
index a1fdd66fc..7bc3184df 100644
--- a/roles/openshift_aws/tasks/elb.yml
+++ b/roles/openshift_aws/tasks/elb.yml
@@ -29,9 +29,9 @@
if 'master' in openshift_aws_node_group_type or 'infra' in openshift_aws_node_group_type
else openshift_aws_elb_listeners }}"
-- name: "Create ELB {{ openshift_aws_elb_name }}"
+- name: "Create ELB {{ l_openshift_aws_elb_name }}"
ec2_elb_lb:
- name: "{{ openshift_aws_elb_name }}"
+ name: "{{ l_openshift_aws_elb_name }}"
state: present
security_group_names: "{{ openshift_aws_elb_security_groups }}"
idle_timeout: "{{ openshift_aws_elb_idle_timout }}"
@@ -49,10 +49,10 @@
# It is necessary to ignore_errors here because the instances are not in 'ready'
# state when first added to ELB
-- name: "Add instances to ELB {{ openshift_aws_elb_name }}"
+- name: "Add instances to ELB {{ l_openshift_aws_elb_name }}"
ec2_elb:
instance_id: "{{ item.id }}"
- ec2_elbs: "{{ openshift_aws_elb_name }}"
+ ec2_elbs: "{{ l_openshift_aws_elb_name }}"
state: present
region: "{{ openshift_aws_region }}"
wait: False