Hi,
my current smart home runs on iobroker but i'm thinking of switching to HA, so i've created an HA OS VM on my proxmox server and want to play around with it.
First I wanted to integrate my existing InfluxDB2 instance (standalone installation on a LXC) into HA but I already fail here, somehow it seems to me that HA ignores my configuration.
configuration.yaml:
# InfluxDB2 Configuration
influxdb: !include influxdb.yaml
influxdb.yaml
api_version: 2 # Ensure the version matches your InfluxDB instance.
ssl: false # Can omit this if using https.
host: <ip_of_my_influxdb_instance>
port: 8086
token: <token> # Your api token
organization: <org> # The InfluxDB organisation that the bucket will belong to.
bucket: <my_old_iobroker_bucket> # The name of the bucket where the data will be saved
max_retries: 3
The Influxdb Add-On always start with its own local instance, i evenm cannot see any log entry which would tell me whats wrong.