diff options
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/aws/openshift-master/config.yml | 4 | ||||
-rw-r--r-- | playbooks/aws/openshift-node/config.yml | 10 | ||||
-rw-r--r-- | playbooks/gce/openshift-master/config.yml | 2 |
3 files changed, 11 insertions, 5 deletions
diff --git a/playbooks/aws/openshift-master/config.yml b/playbooks/aws/openshift-master/config.yml index c88828912..454cd6f24 100644 --- a/playbooks/aws/openshift-master/config.yml +++ b/playbooks/aws/openshift-master/config.yml @@ -3,7 +3,7 @@ hosts: localhost gather_facts: no tasks: - - name: Evaluate oo_host_group_exp if it's set + - name: "Evaluate oo_host_group_exp if it's set" add_host: "name={{ item }} groups=oo_hosts_to_config" with_items: "{{ oo_host_group_exp | default('') }}" when: oo_host_group_exp is defined @@ -36,7 +36,7 @@ role: openshift_master, openshift_node_ips: "{{ hostvars['localhost'].openshift_node_ips | default(['']) }}", openshift_env: "{{ oo_env }}" - # TODO: openshift_public_ip: set to aws instance public ip + openshift_public_ip: "{{ ec2_ip_address }}" } - pods - os_env_extras diff --git a/playbooks/aws/openshift-node/config.yml b/playbooks/aws/openshift-node/config.yml index 129464e1f..9662168c4 100644 --- a/playbooks/aws/openshift-node/config.yml +++ b/playbooks/aws/openshift-node/config.yml @@ -23,6 +23,12 @@ | oo_select_keys(groups['tag_env-host-type_' + oo_env + '-openshift-master']) | oo_collect(attribute='ansible_default_ipv4.address') }}" when: groups['tag_env-host-type_' + oo_env + '-openshift-master'] is defined + - name: Setting openshift_master_public_ips fact on localhost + set_fact: + openshift_master_public_ips: "{{ hostvars + | oo_select_keys(groups['tag_env-host-type-' + oo_env + '-openshift-master']) + | oo_collect(attribute='ec2_ip_address') }}" + when: groups['tag_env-host-type-' + oo_env + '-openshift-master'] is defined - name: "Configure instances" hosts: oo_hosts_to_config @@ -36,8 +42,8 @@ - { role: openshift_node, openshift_master_ips: "{{ hostvars['localhost'].openshift_master_ips | default(['']) }}", - # TODO: add openshift_Master_public_ips + openshift_master_public_ips: "{{ hostvars['localhost'].openshift_master_public_ips | default(['']) }}", openshift_env: "{{ oo_env }}" - # TODO: openshift_public_ip: set to aws instance public ip + openshift_public_ip: "{{ ec2_ip_address }}" } - os_env_extras diff --git a/playbooks/gce/openshift-master/config.yml b/playbooks/gce/openshift-master/config.yml index 7e754074b..ae598b622 100644 --- a/playbooks/gce/openshift-master/config.yml +++ b/playbooks/gce/openshift-master/config.yml @@ -3,7 +3,7 @@ hosts: localhost gather_facts: no tasks: - - name: Evaluate oo_host_group_exp if it's set + - name: "Evaluate oo_host_group_exp if it's set" add_host: "name={{ item }} groups=oo_hosts_to_config" with_items: "{{ oo_host_group_exp | default('') }}" when: oo_host_group_exp is defined |