2024-02-07 21:49:38 +00:00
|
|
|
---
|
|
|
|
# task/main file for deploy_keepalived
|
2024-02-11 22:17:16 +00:00
|
|
|
- name: "Import prerequisites.yml"
|
|
|
|
ansible.builtin.include_tasks: prerequisites.yml
|
|
|
|
|
|
|
|
- name: "Import install_host.yml"
|
|
|
|
ansible.builtin.include_tasks: install_host.yml
|
2024-03-09 21:34:20 +00:00
|
|
|
when: deploy_keepalived_deploy_method == 'host'
|
|
|
|
|
|
|
|
- name: "Import configure.yml"
|
|
|
|
ansible.builtin.include_tasks: configure.yml
|
|
|
|
|
|
|
|
- name: "Import install_docker.yml"
|
|
|
|
ansible.builtin.include_tasks: install_docker.yml
|
|
|
|
when: deploy_keepalived_deploy_method == 'docker'
|