You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hetzner-ansible/smardigo.yml

75 lines
1.6 KiB
YAML

---
- name: 'apply setup to {{ host | default("all") }}'
hosts: '{{ host | default("all") }}'
serial: "{{ serial_number | default(5) }}"
vars:
ansible_ssh_host: "{{ stage_server_domain }}"
become: yes
pre_tasks:
- name: "Check if ansible version is at least 2.10.x"
assert:
that:
- ansible_version.major >= 2
- ansible_version.minor >= 10
msg: "The ansible version has to be at least ({{ ansible_version.full }})"
delegate_to: 127.0.0.1
become: false
- name: "Import autodiscover pre-tasks"
include_tasks: tasks/autodiscover_pre_tasks.yml
tags:
- always
roles:
- role: postfix
when: "'postfix' in group_names"
- role: keycloak
when: "'keycloak' in group_names"
- role: harbor
when: "'harbor' in group_names"
- role: prometheus
when: "'prometheus' in group_names"
- role: elastic
when: "'elastic' in group_names"
- role: logstash
when: "'logstash' in group_names"
- role: kibana
when: "'kibana' in group_names"
- role: postgres
when: "'postgres' in group_names"
- role: pgadmin4
when: "'pgadmin4' in group_names"
- role: maria
when: "'maria' in group_names"
- role: gitea
when: "'gitea' in group_names"
- role: awx
when: "'awx' in group_names"
- role: iam
when: "'iam' in group_names"
- role: webdav
when: "'webdav' in group_names"
- role: management
when: "'management' in group_names"
- role: redis
when: "'redis' in group_names"
- role: pdns
when: "'pdns' in group_names"