This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
galaxy-deployment-ansible-d…/Apache Druid/26.0.0/druid/role/tasks/main.yml
2024-01-18 15:35:34 +08:00

20 lines
562 B
YAML

- block:
- include: uninstall.yml
- include: deploy.yml
- include: status-check.yml
when: (operation) == "install" and (groups.druid|length) > 1
- block:
- include: uninstall.yml
when: (operation) == "uninstall" and (groups.druid|length) > 1
- block:
- include: standalone/uninstall.yml
- include: standalone/deploy.yml
- include: status-check.yml
when: (operation) == "install" and (groups.druid|length) == 1
- block:
- include: standalone/uninstall.yml
when: (operation) == "uninstall" and (groups.druid|length) == 1