diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-12-01 21:39:00 -0500 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-12-11 16:39:27 -0500 |
commit | 35c1abb6050f2cd1f31396edd42618a2998bd546 (patch) | |
tree | dfb31882e7eb459b173ea206a89bc834aba10dd0 /playbooks/aws | |
parent | a53b8f63175c80c9d0a8d590fd0854e2ed8e1aae (diff) | |
download | openshift-35c1abb6050f2cd1f31396edd42618a2998bd546.tar.gz openshift-35c1abb6050f2cd1f31396edd42618a2998bd546.tar.bz2 openshift-35c1abb6050f2cd1f31396edd42618a2998bd546.tar.xz openshift-35c1abb6050f2cd1f31396edd42618a2998bd546.zip |
Changing the node group format to a list.
Diffstat (limited to 'playbooks/aws')
-rwxr-xr-x | playbooks/aws/openshift-cluster/accept.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/aws/openshift-cluster/accept.yml b/playbooks/aws/openshift-cluster/accept.yml index cab2f1e40..e7bed4f6e 100755 --- a/playbooks/aws/openshift-cluster/accept.yml +++ b/playbooks/aws/openshift-cluster/accept.yml @@ -18,7 +18,7 @@ name: lib_openshift - name: fetch masters - ec2_remote_facts: + ec2_instance_facts: region: "{{ openshift_aws_region | default('us-east-1') }}" filters: "tag:clusterid": "{{ openshift_aws_clusterid | default('default') }}" @@ -30,7 +30,7 @@ until: "'instances' in mastersout and mastersout.instances|length > 0" - name: fetch new node instances - ec2_remote_facts: + ec2_instance_facts: region: "{{ openshift_aws_region | default('us-east-1') }}" filters: "tag:clusterid": "{{ openshift_aws_clusterid | default('default') }}" |