You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
- hosts: all
|
|
roles:
|
|
- web_base
|
|
|
|
- hosts: lb
|
|
serial: "25%"
|
|
max_fail_percentage: 40
|
|
roles:
|
|
- web_lb
|
|
|
|
- hosts: db
|
|
serial: 1
|
|
max_fail_percentage: 10
|
|
roles:
|
|
- web_db
|
|
|
|
- hosts: worker
|
|
serial: 2
|
|
max_fail_percentage: 20
|
|
roles:
|
|
- web_worker
|
|
|
|
|