pvc-ansible/roles/pvc/tasks/main.yml

70 lines
1.5 KiB
YAML
Raw Normal View History

2023-09-01 15:42:19 -04:00
---
2023-09-01 15:42:19 -04:00
# Set coordinator state
- set_fact:
is_coordinator: "{% for node in pvc_nodes if node.hostname == inventory_hostname %}{{ node.is_coordinator }}{% endfor %}"
tags: always
2023-09-01 15:42:19 -04:00
# First-run check
- name: check if this is a new instance
shell: "echo 'bootstrapped' > /etc/pvc-install.pvc"
2023-09-01 15:42:19 -04:00
args:
creates: /etc/pvc-install.pvc
2023-09-01 15:42:19 -04:00
register: newhost_check
2023-09-01 15:42:19 -04:00
tags: always
2023-09-01 15:42:19 -04:00
- name: set newhost fact
set_fact:
newhost: yes
when: newhost_check.changed
2023-09-01 15:42:19 -04:00
tags: always
2023-09-01 15:42:19 -04:00
- include: common/add_cluster_ips.yml
when: newhost is defined and newhost
2023-09-01 15:42:19 -04:00
tags: always
2023-09-01 15:42:19 -04:00
# General blacklisting of modules
2023-09-01 15:42:19 -04:00
- name: add module blacklist
template:
src: system/blacklist.j2
dest: /etc/modprobe.d/blacklist.conf
2023-09-01 15:42:21 -04:00
# Logrotate configuration
- name: add logrotate configuration
template:
src: system/pvc.j2
dest: /etc/logrotate.d/pvc
# Install base databases (coordinators only)
2023-09-01 15:42:19 -04:00
- include: ceph/main.yml
2023-09-01 15:42:19 -04:00
tags: pvc-ceph
when: is_coordinator
2023-09-01 15:42:19 -04:00
2023-09-01 15:42:19 -04:00
- include: zookeeper/main.yml
2023-09-01 15:42:19 -04:00
tags: pvc-zookeeper
when: is_coordinator
2023-09-01 15:42:19 -04:00
2023-09-01 15:42:19 -04:00
- include: patroni/main.yml
tags: pvc-patroni
when: is_coordinator
2023-09-01 15:42:19 -04:00
2023-09-01 15:42:19 -04:00
# Install core services
- include: libvirt/main.yml
2023-09-01 15:42:19 -04:00
tags: pvc-libvirt
2023-09-01 15:42:19 -04:00
- include: frr/main.yml
2023-09-01 15:42:19 -04:00
tags: pvc-frr
# Install PVC daemon
2023-09-01 15:42:19 -04:00
- include: pvc/main.yml
2023-09-01 15:42:19 -04:00
tags: pvc-daemon
- name: restart server on first install
shell: 'sleep 3 && shutdown -r now "Ansible updates triggered"'
async: 1
poll: 0
ignore_errors: yes
become: yes
when: newhost is defined and newhost
tags: always