summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/tasks/provision.yml
diff options
context:
space:
mode:
authorMichael Gugino <mgugino@redhat.com>2017-09-29 09:21:36 -0400
committerMichael Gugino <mgugino@redhat.com>2017-09-29 09:23:00 -0400
commited12dd75d2882eda00d3c06d2d41af63c35e53b4 (patch)
tree81d6d3517a5bd139ca6da006178e71dc97c702eb /roles/openshift_aws/tasks/provision.yml
parent9920ea81d7f036432553921b708cf8c49ac6ea62 (diff)
downloadopenshift-ed12dd75d2882eda00d3c06d2d41af63c35e53b4.tar.gz
openshift-ed12dd75d2882eda00d3c06d2d41af63c35e53b4.tar.bz2
openshift-ed12dd75d2882eda00d3c06d2d41af63c35e53b4.tar.xz
openshift-ed12dd75d2882eda00d3c06d2d41af63c35e53b4.zip
Fix some provisioning variables
This commit fixes some provisioning variables. It also adjusts a failure condition for an ec2 call, which may fail silently without having the necessary permissions, which creates an unrelated error message later in the run.
Diffstat (limited to 'roles/openshift_aws/tasks/provision.yml')
-rw-r--r--roles/openshift_aws/tasks/provision.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_aws/tasks/provision.yml b/roles/openshift_aws/tasks/provision.yml
index 189caeaee..a2920b744 100644
--- a/roles/openshift_aws/tasks/provision.yml
+++ b/roles/openshift_aws/tasks/provision.yml
@@ -34,14 +34,14 @@
include: elb.yml
vars:
openshift_aws_elb_direction: internal
- openshift_aws_elb_name: "{{ openshift_aws_clusterid }}-{{openshift_aws_node_group_type }}-internal"
+ l_openshift_aws_elb_name: "{{ openshift_aws_elb_name }}-internal"
openshift_aws_elb_scheme: internal
- name: create our master external load balancers
include: elb.yml
vars:
openshift_aws_elb_direction: external
- openshift_aws_elb_name: "{{ openshift_aws_clusterid }}-{{openshift_aws_node_group_type }}-external"
+ l_openshift_aws_elb_name: "{{ openshift_aws_elb_name }}-external"
openshift_aws_elb_scheme: internet-facing
- name: wait for ssh to become available