blob: f11043548fa4090b50d06acd6f126550363dd920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
- hosts: all
become: false
roles:
- basics
- test
vars:
- images:
- name: "gondul-db-test"
links: []
ports: []
- name: "gondul-front-test"
links: [ "gondul-db-test:db" ]
ports: "{{ front_ports }}"
- name: "gondul-varnish-test"
links: [ "gondul-front-test:gondul-front" ]
ports: "{{ varnish_ports }}"
- name: "gondul-collector-test"
links: [ "gondul-db-test:db" ]
ports: []
- name: "gondul-snmp-test"
links: [ "gondul-db-test:db" ]
ports: []
|