summaryrefslogtreecommitdiffstats
path: root/roles/ands_network/tasks/install_post.yml
blob: 3f1e57c35382aa6ecda68d512ac6e78aa850247e (plain)
1
2
3
4
5
6
7
8
9
- name: Start keepalived
  service: name=keepalived state=started enabled=yes
  when: ('masters' in group_names) or ('new_masters' in group_names)

- name: Provision /etc/hosts to ensure that all hosts accessing masters servers appropriately
  lineinfile: dest="/etc/hosts" line="{{ ands_inner_lb_ip | default('') }} {{ openshift_master_cluster_hostname }}" regexp=".*{{ openshift_master_cluster_hostname }}$" state="{{ state }}"
  when: ('masters' not in group_names and 'new_masters' not in group_names)
  vars:
    state: "{{ ands_use_inner_lb | default(false) | ternary('present', 'absent') }}"