2024-02-11 13:50:21 +00:00
|
|
|
# vim: ft=yaml.ansible
|
|
|
|
---
|
2024-02-29 19:45:59 +00:00
|
|
|
- hosts: monitoring
|
2024-02-11 13:50:21 +00:00
|
|
|
gather_facts: true
|
|
|
|
become: true
|
|
|
|
vars:
|
2024-02-18 16:27:52 +00:00
|
|
|
vagrant: false
|
2024-02-11 13:50:21 +00:00
|
|
|
base_domain: "{{ 'datacoop.devel' if vagrant else 'data.coop' }}"
|
|
|
|
letsencrypt_enabled: true
|
|
|
|
letsencrypt_email: "admin@{{ base_domain }}"
|
2024-02-18 16:18:54 +00:00
|
|
|
services_include:
|
|
|
|
- nginx_proxy
|
|
|
|
- uptime_kuma
|
2024-02-29 19:45:59 +00:00
|
|
|
- watchtower
|
2024-02-11 13:50:21 +00:00
|
|
|
do_not_change_ssh_port: true
|
|
|
|
skip_dell_apt_repo: true
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ubuntu_base
|
|
|
|
tags:
|
|
|
|
- base_only
|
|
|
|
- import_role:
|
|
|
|
name: docker
|