Deploy hbbs + hbbr via a safe-by-default Ansible role (playbooks/rustdesk.yml): with rustdesk_confirm=false it only reports whether compose.yml matches live state and refuses to recreate the stack; with rustdesk_confirm=true it deploys and recreates. The relay assert rejects the known-bad hk2.wsvc.info hostname. Add health profiles rustdesk (hbbs/hbbr health, relay DNS) and hk2aux (co-located traefik/adguard/remark42 on hk2), plus the rustdesk-health runbook and AGENTS.md entry. Server image pinned rustdesk/rustdesk-server:1.1.14.
14 lines
651 B
YAML
14 lines
651 B
YAML
---
|
|
# RustDesk server deployment (hbbs + hbbr) on hk2.
|
|
# Safe by default: without rustdesk_confirm=true the role only reports whether
|
|
# the declared compose file matches live state and refuses to recreate the stack.
|
|
rustdesk_confirm: false
|
|
# Compose project directory.
|
|
rustdesk_compose_dir: /opt/rustdesk
|
|
# Relay (hbbr) hostname:port advertised to every client via `hbbs -r`.
|
|
# MUST resolve to this host's public IP (154.36.174.161). The known-bad value
|
|
# 'hk2.wsvc.info' has no DNS record and must never be used.
|
|
rustdesk_relay: hk2.chans.xyz:21117
|
|
# Pinned server image (used for both hbbs and hbbr).
|
|
rustdesk_image: rustdesk/rustdesk-server:1.1.14
|