diff options
author | Thomas Wiest <twiest@redhat.com> | 2015-05-26 11:58:50 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@redhat.com> | 2015-05-26 11:58:50 -0400 |
commit | 09e41be0eb83e24f284b84015bb1abbd25f23dff (patch) | |
tree | de2fa359c07bc971ce27c5ac4c0cd2a649937ef7 /playbooks/aws/openshift-node | |
parent | ce6a15b62755e10cfa31628e5c9e430ef876c1ff (diff) | |
download | openshift-09e41be0eb83e24f284b84015bb1abbd25f23dff.tar.gz openshift-09e41be0eb83e24f284b84015bb1abbd25f23dff.tar.bz2 openshift-09e41be0eb83e24f284b84015bb1abbd25f23dff.tar.xz openshift-09e41be0eb83e24f284b84015bb1abbd25f23dff.zip |
removed references to atomic proxy.
Diffstat (limited to 'playbooks/aws/openshift-node')
-rw-r--r-- | playbooks/aws/openshift-node/launch.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/playbooks/aws/openshift-node/launch.yml b/playbooks/aws/openshift-node/launch.yml index 36aee14ff..d6024a020 100644 --- a/playbooks/aws/openshift-node/launch.yml +++ b/playbooks/aws/openshift-node/launch.yml @@ -4,10 +4,10 @@ connection: local gather_facts: no -# TODO: modify atomic_ami based on deployment_type +# TODO: modify g_ami based on deployment_type vars: inst_region: us-east-1 - atomic_ami: ami-86781fee + g_ami: ami-86781fee user_data_file: user_data.txt tasks: @@ -18,13 +18,13 @@ keypair: libra group: ['public'] instance_type: m3.large - image: "{{ atomic_ami }}" + image: "{{ g_ami }}" count: "{{ oo_new_inst_names | oo_len }}" user_data: "{{ lookup('file', user_data_file) }}" wait: yes register: ec2 - - name: Add new instances public IPs to the atomic proxy host group + - name: Add new instances public IPs to the host group add_host: hostname: "{{ item.public_ip }}" groupname: new_ec2_instances" |