ansible-role-kubernetes/tasks/load_balancer.yml
Adrien 04dc68fad0
Some checks failed
continuous-integration/drone/push Build is failing
fix lint
2020-06-02 22:01:59 +02:00

32 lines
1.1 KiB
YAML

---
- name: Install needed packages
package:
name: "{{ item }}"
state: present
update_cache: yes
with_items:
- keepalived
- curl
notify: Restart keepalived
- name: Install check_apiserver.sh script for keepalived
template:
src: etc/keepalived/check_apiserver.sh.j2
dest: /etc/keepalived/check_apiserver.sh
- name: Install keepalived config file
template:
src: etc/keepalived/keepalived.conf.j2
dest: /etc/keepalived/keepalived.conf
with_items:
- { lbip: '{{ lbip_kubeapiserver }}', state: "MASTER", interface: '{{ lb_interface }}', auth_pass: '{{ lb_auth_pass }}' }
when:
- groups['KubernetesMasters'][0] == ansible_hostname
notify: Restart keepalived
- name: Install keepalived config file
template:
src: etc/keepalived/keepalived.conf.j2
dest: /etc/keepalived/keepalived.conf
with_items:
- { lbip: '{{ lbip_kubeapiserver }}', state: "BACKUP", interface: '{{ lb_interface }}', auth_pass: '{{ lb_auth_pass }}' }
when:
- not groups['KubernetesMasters'][0] == ansible_hostname
notify: Restart keepalived