Standardizing on Headers for all YAML files.
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations.
- Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages.
- Added relevant links and issue references where applicable to enhance user guidance and support.
2025-11-29 13:17:00 -05:00
|
|
|
######################################################################
|
2025-12-02 09:48:29 -05:00
|
|
|
# @CCOSTAN - Follow Me on X
|
|
|
|
|
# For more info visit https://www.vcloudinfo.com/click-here
|
|
|
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
|
|
|
# -------------------------------------------------------------------
|
|
|
|
|
# Proxmox Host Automations - reboots and update alerts
|
|
|
|
|
# Nightly Frigate host reboot plus update repair issues.
|
|
|
|
|
# -------------------------------------------------------------------
|
|
|
|
|
# Notes: Creates HA repair issues when proxmox nodes report updates.
|
Standardizing on Headers for all YAML files.
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations.
- Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages.
- Added relevant links and issue references where applicable to enhance user guidance and support.
2025-11-29 13:17:00 -05:00
|
|
|
######################################################################
|
2025-07-12 17:44:42 -04:00
|
|
|
automation:
|
|
|
|
|
- alias: "Nightly Frigate Server Reboot"
|
|
|
|
|
id: nightly_frigate_reboot
|
|
|
|
|
description: "Reboots the Frigate server every day at 5 AM"
|
2025-12-02 09:48:29 -05:00
|
|
|
mode: single
|
2025-07-12 17:44:42 -04:00
|
|
|
trigger:
|
|
|
|
|
- platform: time
|
|
|
|
|
at: "05:00:00"
|
|
|
|
|
action:
|
|
|
|
|
- service: button.press
|
|
|
|
|
target:
|
|
|
|
|
entity_id: button.qemu_docker2_101_reboot
|
2025-07-22 12:00:39 -04:00
|
|
|
|
2025-12-02 09:48:29 -05:00
|
|
|
- alias: "Proxmox Updates Repair Issues"
|
|
|
|
|
id: proxmox_updates_repair
|
|
|
|
|
description: "Track repair issues when Proxmox hosts report updates."
|
|
|
|
|
mode: restart
|
2025-07-22 12:00:39 -04:00
|
|
|
trigger:
|
|
|
|
|
- platform: state
|
|
|
|
|
entity_id: binary_sensor.node_proxmox1_updates_packages
|
2025-12-02 09:48:29 -05:00
|
|
|
- platform: state
|
|
|
|
|
entity_id: binary_sensor.node_proxmox02_updates_packages
|
|
|
|
|
variables:
|
|
|
|
|
node_name: >
|
|
|
|
|
{% if 'proxmox1' in trigger.entity_id %}Proxmox1{% else %}Proxmox02{% endif %}
|
|
|
|
|
issue_id: >
|
|
|
|
|
{% if 'proxmox1' in trigger.entity_id %}
|
|
|
|
|
proxmox1_updates_available
|
|
|
|
|
{% else %}
|
|
|
|
|
proxmox02_updates_available
|
|
|
|
|
{% endif %}
|
2025-07-22 12:00:39 -04:00
|
|
|
action:
|
2025-12-02 09:48:29 -05:00
|
|
|
- choose:
|
|
|
|
|
- conditions: "{{ trigger.to_state.state == 'on' }}"
|
|
|
|
|
sequence:
|
|
|
|
|
- service: repairs.create
|
|
|
|
|
data:
|
|
|
|
|
issue_id: "{{ issue_id }}"
|
|
|
|
|
severity: warning
|
|
|
|
|
persistent: false
|
|
|
|
|
title: "{{ node_name }} has updates available"
|
|
|
|
|
description: >
|
|
|
|
|
{{ trigger.entity_id }} is ON, indicating pending updates on {{ node_name }}.
|
|
|
|
|
Apply updates in Proxmox, then reload this sensor to clear the issue.
|
|
|
|
|
default:
|
|
|
|
|
- service: repairs.remove
|
|
|
|
|
data:
|
|
|
|
|
issue_id: "{{ issue_id }}"
|