NewsBlur/ansible/playbooks/setup_node.yml

20 lines
538 B
YAML
Raw Normal View History

2021-02-01 21:50:44 -05:00
---
2021-02-18 14:40:11 -05:00
- name: SETUP -> node containers
2021-02-01 21:50:44 -05:00
hosts: node
vars_files:
- ../env_vars/base.yml
2021-02-01 21:50:44 -05:00
vars:
- update_apt_cache: yes
- motd_role: app
roles:
2021-02-18 14:40:11 -05:00
- {role: 'base', tags: 'base'}
- {role: 'ufw', tags: 'ufw'}
2021-02-18 14:40:11 -05:00
- {role: 'docker', tags: 'docker'}
- {role: 'repo', tags: ['repo', 'pull']}
- {role: 'dnsmasq', tags: 'dnsmasq'}
- {role: 'consul', tags: 'consul'}
2021-02-11 20:44:57 -05:00
- {role: 'consul-client', tags: 'consul'}
- {role: 'node-exporter', tags: ['node-exporter', 'metrics']}
2021-02-15 19:16:08 -05:00
- {role: 'node', tags: 'node'}
2021-02-01 21:50:44 -05:00