blob: 0f22baf9ec4891e6713ce9c9cfdeabf8048b03e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
- hosts: cluster_nodes
# "you can define how many hosts Ansible should manage at a single time
# using the serial keyword"
serial: 1
roles:
- role: common
tags: base
- role: users
tags: account
- role: consul
tags: kv
- role: nomad
tags: orchestrator
- role: network
tags: net
# UNSAFE!! This section configures glusterfs. Once done, don't run it ever again as it may break stuff.
# - role: storage
# tags: sto
|