-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
39 lines (32 loc) · 876 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
- hosts: tickstack
tasks:
- name: set hostname
hostname: name="{{inventory_hostname}}"
tags: setup
- name: set timezone to Australia/Canberra
timezone:
name: Australia/Canberra
tags: setup
- name: Setup docker
include_tasks: tasks/docker.yml
tags: docker, setup
- name: docker network
docker_network:
name: influx
tags: docker, setup
- name: Setup influxdb
include_tasks: tasks/influxdb.yml
tags: influxdb, setup
- name: Setup smtp
include_tasks: tasks/smtp.yml
tags: smtp
- name: Setup grafana
include_tasks: tasks/grafana.yml
tags: grafana
- name: Setup kapacitor
include_tasks: tasks/kapacitor.yml
tags: kapacitor
#
# - name: Setup chronograf
# include_tasks: tasks/chronograf.yml
# tags: chronograf