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…/Clickhouse/21.8.13.1/clickhouse/role/tasks/main.yml

20 lines
625 B
YAML
Raw Normal View History

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