Compare commits

..

No commits in common. "v1.0.1" and "v1.0.0" have entirely different histories.

4 changed files with 2 additions and 11 deletions

View File

@ -2,13 +2,6 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.0.1](https://git.laurivan.com/Dev/ansible-role-knx-monitor/compare/v1.0.0...v1.0.1) (2022-12-20)
### Bug Fixes
* Docker compose and configuration. ([3bb67f6](https://git.laurivan.com/Dev/ansible-role-knx-monitor/commit/3bb67f679c4566549a0ba533f6e5e3518e4c3267))
## 1.0.0 (2022-12-20)

View File

@ -15,8 +15,7 @@ Role Variables
knx_monitor:
docker_version: "latest"
gateway_ip: "localhost"
config_path: "~/knx-monitor"
topology_source: "./topology.csv"
topology_file: "{{ \".\" | | expanduser | realpath }}/topology.csv"
influx:
url: "http://localhost:8086"

View File

@ -7,7 +7,7 @@ services:
restart: unless-stopped
volumes:
- {{ knx_monitor.config_path | expanduser | realpath }}/export-addresses.csv:/code/knx/export-addresses.csv:ro
# - {{ knx_monitor.config_path | expanduser | realpath }}/export-addresses.csv:/code/knx/export-addresses.csv:ro
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
env_file:

View File

@ -1,5 +1,4 @@
KNX_GATEWAY_IP={{ knx_monitor.gateway_ip }}
KNX_TOPOLOGY=/code/knx/export-addresses.csv
INFLUX_BUCKET={{ knx_monitor.influx.bucket }}
INFLUX_ORG={{ knx_monitor.influx.org }}