infrastructure/coreos-config/playbook.yaml

170 lines
4.7 KiB
YAML
Raw Normal View History

---
- name: Wait for hosts to be ready
hosts: all
gather_facts: false
tasks:
- name: Wait for system to become reachable
wait_for_connection:
timeout: 300
sleep: 10
- name: Backup
2022-10-29 05:04:47 +02:00
hosts: backup
2022-07-04 02:10:02 +02:00
become: true
2022-07-14 00:19:54 +02:00
become_user: root
tasks:
- name: Install backup script
ansible.builtin.template:
src: backup.sh.j2
dest: /root/backup.sh
2022-07-04 02:10:02 +02:00
mode: '0700'
owner: root
- ansible.builtin.file:
path: /root/.ssh
owner: root
state: directory
mode: '0700'
- name: Install SSH Keys
ansible.builtin.template:
src: storagebox.j2
dest: /root/.ssh/storagebox
mode: '0600'
owner: root
2022-07-14 00:19:54 +02:00
- name: Add Known Hosts entries
ansible.builtin.known_hosts:
path: "/root/.ssh/known_hosts"
name: "{{ backup.known_hosts.name }}"
key: "{{ backup.known_hosts.key }}"
- name: Restore from Backup
hosts: unprovisioned
become: true
become_user: root
gather_facts: true
tasks:
- block:
2022-10-29 05:04:47 +02:00
- name: Install restore script
2022-07-14 00:19:54 +02:00
ansible.builtin.template:
src: restore.sh.j2
dest: /root/restore.sh
mode: '0700'
owner: root
2022-10-29 05:04:47 +02:00
- ansible.builtin.file:
path: /root/.ssh
owner: root
state: directory
mode: '0700'
- name: Install SSH Keys
ansible.builtin.template:
src: storagebox.j2
dest: /root/.ssh/storagebox
mode: '0600'
owner: root
- name: Add Known Hosts entries
ansible.builtin.known_hosts:
path: "/root/.ssh/known_hosts"
name: "{{ backup.known_hosts.name }}"
key: "{{ backup.known_hosts.key }}"
2022-07-14 00:19:54 +02:00
- name: Restore from Borg
become: true
become_user: root
ansible.builtin.command:
chdir: /
cmd: bash /root/restore.sh
- name: Remove script from host
ansible.builtin.file:
path: /root/restore.sh
state: absent
- set_fact:
provisioned: true
cacheable: true
when: ansible_facts.provisioned is undefined
- name: Setup Registry credentials
hosts: all
tasks:
- ansible.builtin.file:
path: /home/core/.docker
owner: core
state: directory
mode: '0700'
- ansible.builtin.template:
src: docker-config.json.j2
dest: /home/core/.docker/config.json
mode: '0600'
owner: core
2022-10-29 05:04:47 +02:00
- name: Install Services
hosts: host.nc.chaoswg.org
vars:
state: present
2022-10-29 05:04:47 +02:00
roles:
2023-03-30 21:51:23 +02:00
- { role: compose_project, service: traefik, with_fa: true }
2022-10-29 05:04:47 +02:00
- { role: compose_project, service: keycloak }
- { role: compose_project, service: minio }
2023-03-27 11:04:31 +02:00
- { role: compose_project, service: repo_proxy }
2022-10-29 05:04:47 +02:00
- { role: compose_project, service: registry }
2023-03-05 22:23:01 +01:00
- { role: compose_project, service: pantalaimon }
2022-10-29 05:04:47 +02:00
- { role: compose_project, service: gitea }
2023-02-28 20:08:06 +01:00
- { role: compose_project, service: gitea-runner }
2022-12-02 04:05:41 +01:00
- { role: compose_project, service: ba-gitlab-runner }
2022-10-29 05:04:47 +02:00
- { role: compose_project, service: wireguard }
- { role: compose_project, service: hedgedoc }
- { role: compose_project, service: miniflux }
2022-12-02 04:05:41 +01:00
- { role: compose_project, service: matrix }
2023-01-10 13:32:17 +01:00
- { role: compose_project, service: radicale }
2022-10-29 05:04:47 +02:00
- { role: compose_project, service: search }
- { role: compose_project, service: syncthing }
- { role: compose_project, service: blog }
2023-03-27 11:04:31 +02:00
- { role: compose_project, service: wkd }
2023-03-23 08:04:37 +01:00
- { role: compose_project, service: linktree }
2022-10-29 05:04:47 +02:00
- { role: compose_project, service: caddy }
- { role: compose_project, service: diun }
- { role: compose_project, service: watchtower }
2023-03-06 03:09:03 +01:00
- name: Setup Thonkpad
hosts: thonkpad.ka.chaoswg.org
vars:
state: present
roles:
- { role: compose_project, service: pantalaimon }
- { role: compose_project, service: wireguard }
- { role: compose_project, service: watchtower }
- { role: compose_project, service: gitea-runner }
2023-03-30 21:51:23 +02:00
- name: Base Setup Monitoring
hosts: mon1.hel1.chaoswg.org
vars:
state: present
roles:
- { role: compose_project, service: traefik }
- { role: compose_project, service: pantalaimon }
- { role: compose_project, service: watchtower }
- name: Setup Monitoring Kuma 1
hosts: mon1.hel1.chaoswg.org
vars:
state: present
roles:
- role: compose_project
service: kuma
vars:
service_name: "tobias"
2023-03-30 22:16:50 +02:00
urls:
- "status.tobiasmanske.de"
- "monitor.chaoswg.org"
2023-03-30 21:51:23 +02:00
- name: Setup Monitoring Kuma 2
hosts: mon1.hel1.chaoswg.org
vars:
state: present
roles:
- role: compose_project
service: kuma
vars:
service_name: "istannen"
2023-03-30 22:16:50 +02:00
urls: [ "monitor.ialistannen.de"]
...