Install grafana and link it to HA

This commit is contained in:
Jake Howard 2020-08-07 11:52:15 +01:00
parent 301ac37868
commit 9d014cfa1c
Signed by: jake
GPG Key ID: 57AFB45680EDD477
5 changed files with 63 additions and 0 deletions

View File

@ -33,6 +33,7 @@
- intersect-docker
- plausible
- duplicati
- grafana
# Arch boxes
- hosts:

View File

@ -0,0 +1,19 @@
version: "2.3"
services:
grafana:
image: grafana/grafana:latest
environment:
- TZ=Europe/London
ports:
- 3000:3000
volumes:
- ./grafana:/var/lib/grafana
restart: unless-stopped
networks:
- default
- grafana
networks:
grafana:
external: true

View File

@ -0,0 +1,4 @@
- name: restart grafana
shell:
chdir: /opt/grafana
cmd: "{{ docker_update_command }}"

View File

@ -0,0 +1,30 @@
- name: Create install directory
file:
path: /opt/grafana
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Create grafana network
docker_network:
name: grafana
- name: Create config directory
file:
path: /opt/grafana/grafana
state: directory
mode: "{{ docker_compose_directory_mask }}"
owner: "472"
group: "472"
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/grafana/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
notify: restart grafana
become: true

View File

@ -24,6 +24,11 @@ services:
- ./influxdb:/var/lib/influxdb
ports:
- 127.0.0.1:48086:8086
networks:
default:
grafana:
aliases:
- ha-influxdb
environment:
- INFLUXDB_DB=home_assistant
- INFLUXDB_HTTP_AUTH_ENABLED=
@ -34,3 +39,7 @@ services:
network_mode: host
volumes:
- ./esphome:/config
networks:
grafana:
external: true