mash-playbook/setup.yml

146 lines
3.5 KiB
YAML
Raw Normal View History

2023-03-15 10:58:12 +02:00
- name: "Set up a self-hosted server"
hosts: "{{ target if target is defined else 'mash_servers' }}"
become: true
roles:
# This role has no tasks at all
- role: galaxy/com.devture.ansible.role.playbook_help
# This role has no tasks at all
- role: galaxy/com.devture.ansible.role.systemd_docker_base
- when: mash_playbook_docker_installation_enabled | bool
role: galaxy/geerlingguy.docker
vars:
docker_install_compose: false
tags:
- setup-docker
- setup-all
- install-docker
- install-all
- when: devture_docker_sdk_for_python_installation_enabled | bool
role: galaxy/com.devture.ansible.role.docker_sdk_for_python
tags:
- setup-docker
- setup-all
- install-docker
- install-all
- when: devture_timesync_installation_enabled | bool
role: galaxy/com.devture.ansible.role.timesync
tags:
- setup-timesync
- setup-all
- install-timesync
- install-all
- role: mash/playbook_base
2023-03-18 13:24:46 +02:00
- role: galaxy/swap
- when: system_security_ssh_enabled | bool
role: galaxy/ssh
2023-03-18 21:50:27 +02:00
- when: system_security_fail2ban_enabled | bool
role: galaxy/fail2ban
2023-03-18 22:04:44 +02:00
2023-03-15 10:58:12 +02:00
# This role exposes various tags (setup-postgres, setup-all, upgrade-postgres, import-postgres, etc.), so we don't tag it here.
- role: galaxy/com.devture.ansible.role.postgres
2023-03-17 16:40:08 +02:00
- role: galaxy/com.devture.ansible.role.postgres_backup
2023-03-15 10:58:12 +02:00
- role: galaxy/com.devture.ansible.role.container_socket_proxy
- role: galaxy/com.devture.ansible.role.traefik
2023-03-24 18:01:21 +02:00
- role: galaxy/adguard_home
2023-04-17 09:42:47 +03:00
- role: galaxy/appsmith
2023-04-19 12:29:15 +02:00
- role: galaxy/authentik
2023-05-01 09:12:29 +02:00
- role: galaxy/backup_borg
2023-03-17 14:25:31 +02:00
- role: galaxy/collabora_online
2023-03-18 19:27:24 +02:00
- role: galaxy/docker_registry
2023-03-19 09:14:12 +02:00
- role: galaxy/docker_registry_browser
2023-03-19 10:04:10 +02:00
- role: galaxy/docker_registry_purger
2023-03-18 19:27:24 +02:00
2023-03-24 09:58:39 +01:00
- role: galaxy/firezone
2023-03-20 08:40:15 +02:00
- role: galaxy/focalboard
2023-04-02 19:13:35 +02:00
- role: galaxy/funkwhale
2023-04-02 18:19:58 +02:00
2023-03-16 18:26:06 +02:00
- role: galaxy/gitea
2023-03-24 13:11:13 +01:00
- role: galaxy/gotosocial
2023-03-20 19:14:45 +02:00
- role: galaxy/grafana
2023-04-10 13:44:48 +03:00
- role: galaxy/mariadb
2023-03-15 10:58:12 +02:00
- role: galaxy/miniflux
2023-04-12 13:49:51 +03:00
- role: galaxy/mrs
2023-04-11 17:39:02 +03:00
- role: galaxy/healthchecks
- role: galaxy/hubsite
2023-04-02 16:39:59 +03:00
- role: galaxy/jitsi
- role: galaxy/keycloak
- role: galaxy/lago
2023-04-14 08:58:46 +03:00
2023-03-29 11:42:39 +03:00
- role: galaxy/navidrome
- role: galaxy/netbox
2023-03-17 11:39:04 +02:00
- role: galaxy/nextcloud
2023-03-29 13:13:17 +02:00
- role: galaxy/owncast
2023-03-17 15:48:15 +02:00
- role: galaxy/peertube
2023-03-17 15:43:45 +02:00
2023-03-20 17:54:01 +02:00
- role: galaxy/prometheus
2023-03-18 00:13:30 +02:00
- role: galaxy/prometheus_node_exporter
2023-03-20 17:54:01 +02:00
- role: galaxy/prometheus_blackbox_exporter
2023-03-18 00:13:30 +02:00
2023-03-15 10:58:12 +02:00
- role: galaxy/radicale
2023-03-17 23:27:52 +02:00
- role: galaxy/redmine
2023-03-17 15:43:45 +02:00
- role: galaxy/redis
2023-03-28 16:02:22 +03:00
- role: galaxy/soft_serve
2023-03-23 11:32:59 +02:00
- role: galaxy/syncthing
- role: galaxy/vaultwarden
2023-03-15 10:58:12 +02:00
- role: galaxy/uptime_kuma
2023-04-29 09:30:26 +03:00
- role: galaxy/wg_easy
2023-03-16 18:26:06 +02:00
- role: galaxy/com.devture.ansible.role.woodpecker_ci_server
- role: galaxy/com.devture.ansible.role.woodpecker_ci_agent
2023-03-20 11:03:59 +02:00
- role: galaxy/aux
2023-03-15 10:58:12 +02:00
- when: devture_systemd_service_manager_enabled | bool
role: galaxy/com.devture.ansible.role.systemd_service_manager
# This is pretty much last, because we want it to better serve as a "last known good configuration".
# See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2217#issuecomment-1301487601
- when: devture_playbook_state_preserver_enabled | bool
role: galaxy/com.devture.ansible.role.playbook_state_preserver
tags:
- setup-all
- install-all
- role: galaxy/com.devture.ansible.role.playbook_runtime_messages