unicast_peer #2
@ -58,6 +58,13 @@ Passer en unicast en utilisant cette liste d'IP.
|
||||
|
||||
*<span style="text-decoration: underline">Valeur par défaut:</span> aucune*
|
||||
|
||||
### keepalived_notify_script_enabled
|
||||
|
||||
Booléen permettant d'activer le script de notification.<br>
|
||||
Le script est déployé dans `/etc/keepalived/notify.sh`.
|
||||
|
||||
*<span style="text-decoration: underline">Valeur par défaut:</span> `false`*
|
||||
|
||||
### keepalived_track_scripts
|
||||
|
||||
Liste de script dont le code retour doit être à zéro pour que le membre conserve ou puisse prendre l'IP de failover.
|
||||
|
@ -13,6 +13,8 @@ keepalived_ipv6: ""
|
||||
|
||||
keepalived_peers: []
|
||||
|
||||
keepalived_notify_script_enabled: false
|
||||
|
||||
keepalived_track_scripts: []
|
||||
# Exemple:
|
||||
# - name: check_haproxy_8080
|
||||
|
@ -14,3 +14,10 @@ galaxy_info:
|
||||
|
||||
dependencies:
|
||||
- role: users
|
||||
vars:
|
||||
users:
|
||||
- name: keepalived_script
|
||||
comment: "Dedicated user for keepalived script"
|
||||
update_password: on_create
|
||||
password_lock: true
|
||||
shell: /bin/bash
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
# tasks file for keepalived
|
||||
|
||||
- name: Installer keepalived
|
||||
- name: Installer le paquet
|
||||
ansible.builtin.apt:
|
||||
name: keepalived
|
||||
become: true
|
||||
@ -15,3 +15,24 @@
|
||||
dest: /etc/keepalived/keepalived.conf
|
||||
become: true
|
||||
notify: Redémarrer keepalived.service
|
||||
|
||||
- name: Déployer les scripts
|
||||
ansible.builtin.copy:
|
||||
src: keepalived/notify.sh
|
||||
dest: /etc/keepalived/
|
||||
owner: keepalived_script
|
||||
group: keepalived_script
|
||||
mode: u=rx,g=rx,o=
|
||||
when: keepalived_notify_script_enabled
|
||||
become: true
|
||||
notify: Redémarrer keepalived.service
|
||||
|
||||
- name: Déployer le fichier de configuration de sudoers
|
||||
ansible.builtin.copy:
|
||||
src: keepalived/sudoers
|
||||
dest: /etc/sudoers.d/keepalived
|
||||
owner: root
|
||||
group: root
|
||||
mode: u=rw,g=r,o=r
|
||||
validate: /usr/sbin/visudo -cf %s
|
||||
become: true
|
||||
|
@ -62,6 +62,10 @@ vrrp_instance VIP_{{ keepalived_uid }} {
|
||||
}
|
||||
{% endif %}
|
||||
|
||||
{% if keepalived_notify_script_enabled %}
|
||||
notify /etc/keepalived/notify.sh
|
||||
{% endif %}
|
||||
|
||||
{% if keepalived_track_scripts | length > 0 %}
|
||||
track_script {
|
||||
{% for script in keepalived_track_scripts %}
|
||||
|
Loading…
Reference in New Issue
Block a user