Skip to content

Latest commit

 

History

History
44 lines (40 loc) · 1.33 KB

homeassistant-proxmoxve-updates-notification.md

File metadata and controls

44 lines (40 loc) · 1.33 KB

Introduction

Via HACS i installed the ProxmoxVE-integration to be able to monitor my Proxmox-installation. I would like to see a persistent-notification in Home Assistant when an update is available for ProxmoxVE.

Automations

This is the automation to create a persistant notification when updates are available for ProxmoxVE:

alias: ProxmoxVE updates notificatie
description: ""
trigger:
  - platform: numeric_state
    entity_id:
      - sensor.node_pve_total_updates
    above: 0
  - platform: homeassistant
    event: start
condition:
  - condition: numeric_state
    entity_id: sensor.node_pve_total_updates
    above: 0
action:
  - service: persistent_notification.create
    data:
      message: >-
        {{ states("sensor.node_pve_total_updates") }} updates beschikbaar voor
        ProxmoxVE
      notification_id: proxmoxve_updates

I added "Home Assistant start" as a trigger as otherwise the notification will disappear after a restart of Home Assistant.

And an automation to close the notification when no updates are available:

alias: ProxmoxVE updates notificatie sluiten
trigger:
  - platform: numeric_state
    entity_id:
      - sensor.node_pve_total_updates
    below: 1
action:
  - service: persistent_notification.dismiss
    data:
      notification_id: proxmoxve_updates