homelab/main.yml

135 lines
2.7 KiB
YAML
Raw Normal View History

2024-09-09 22:37:51 +10:00
---
- hosts: all
name: Configure all servers
tasks:
- name: Gather facts if run with tags
ansible.builtin.setup:
when: ansible_run_tags | length
tags: always
- hosts: all
become: yes
tasks:
- include_tasks: tasks/base.yml
tags: base_install
- hosts: cloud
become: yes
roles:
- role: docker
tags: docker_install
- name: traefik
vars:
traefik_host: traefik01.comprofix.com
tags: traefik_install
tasks:
2024-09-10 22:09:43 +10:00
2024-09-09 22:37:51 +10:00
- name: Deploy Vaultwarden
import_tasks: tasks/vaultwarden.yml
tags: vaultwarden_install
- name: Deploy gitea
import_tasks: tasks/gitea.yml
tags: gitea_install
tags: cloud_install
2024-09-10 22:09:43 +10:00
- hosts: docker
become: yes
roles:
- role: docker
tags: docker_install
- role: nfs
mounts:
- name: Data share
path: /mnt/nfs/data
src: truenas.comprofix.xyz:/mnt/datapool/data
tags: nfs_install
- role: traefik
vars:
traefik_host: traefik02.comprofix.xyz
tags: traefik_install
2024-09-20 19:59:24 +10:00
tasks:
- name: Deploy comprofix.com website
import_tasks: tasks/comprofix.com.yml
tags: comprofix_install
2024-09-10 22:09:43 +10:00
- name: Deploy iDrac Fan Controller
import_tasks: tasks/idrac.yml
tags: idrac_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy MariaDB
import_tasks: tasks/mariadb.yml
tags: mariadb_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy InvoiceNinja
import_tasks: tasks/invoiceninja.yml
tags: invoiceninja_install
- name: Deploy Homepage
import_tasks: tasks/homepage.yml
tags: homepage_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
# - name: Deploy osTicket
# import_tasks: tasks/osticket.yml
# tags: osticket_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy speedtest-tracker
import_tasks: tasks/speedtest.yml
tags: speedtest_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy dozzle
import_tasks: tasks/dozzle.yml
tags: dozzle_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy jellyseerr
import_tasks: tasks/jellyseerr.yml
tags: jellyseerr_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy lidarr
import_tasks: tasks/lidarr.yml
tags: lidarr_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy prowlarr
import_tasks: tasks/prowlarr.yml
tags: prowlarr_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy radarr
import_tasks: tasks/radarr.yml
tags: radarr_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy readarr
import_tasks: tasks/readarr.yml
tags: readarr_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy sonarr
import_tasks: tasks/sonarr.yml
tags: sonarr_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy sabnzbd
import_tasks: tasks/sabnzbd.yml
tags: sabnzbd_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy mealie
import_tasks: tasks/mealie.yml
tags: mealie_install
2024-09-09 22:37:51 +10:00
2024-09-10 22:09:43 +10:00
- name: Deploy pyKMS
import_tasks: tasks/pykms.yml
tags: pykms_install
tags: dockerserver_install
2024-09-09 22:37:51 +10:00