Anyone who is running Hassio on Proxmox have the ProxmoxVE integration successfully running on your system? I have followed the install guide for the integration and get the entities (NAS temp, NAS cpu temp, and NAS fan speed) to show up in HA, but no data. Any thoughts or help would be greatly appreciated. Below is system info, config.yaml, and logviewer.
SYSTEM INFO:
|arch|x86_64|
|dev|false|
|docker|true|
|hassio|true|
|os_name|Linux|
|os_version|4.19.107|
|python_version|3.7.7|
|timezone|America/Chicago|
|version|0.108.3|
|virtualenv|false|
### Lovelace
|dashboards|2|
|mode|storage|
|resources|11|
|views|9|
My config.yaml:
proxmoxve:
- host: !secret pve_host
username: !secret pve_user
password: !secret pve_pw
port: !secret pve_port
verify_ssl: false
realm: pve
nodes:
- node: pve
vms:
- 100
HA logviewer ouputs the following:
2020-04-13 18:57:24 ERROR (SyncWorker_1) [homeassistant.components.command_line.sensor] Command failed: ssh [email protected] ‘( sensors )’ > /tmp/temp_nas && cat /tmp/temp_nas | head -13 | tail -1 | cut -c15-22
2020-04-13 18:57:24 ERROR (SyncWorker_16) [homeassistant.components.command_line.sensor] Command failed: ssh [email protected] ‘( sensors )’ > /tmp/fan_nas && cat /tmp/fan_nas | head -12 | tail -1 | cut -c13-17
2020-04-13 18:58:25 ERROR (SyncWorker_5) [homeassistant.components.command_line.sensor] Command failed: ssh [email protected] ‘( sensors )’ > /tmp/cpu_nas && cat /tmp/cpu_nas | head -3 | tail -1 | cut -c15-22
Any help would be great.