Register mqtt-broker (LXC 104) as a known /exec target

Shared infra, not a deployable app (provisioned by stack-init's
deploy_mqtt_broker(), no Forgejo repo of its own) — listed in INFRA_HEALTH
only so it's a valid host for /deploy/exec (used by the portal's new MQTT
inspector tab) and shows in the Shell tab's container list. Its /health
check will always read "unreachable" since Mosquitto doesn't speak HTTP —
expected, not a fault.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-28 17:12:03 +00:00
parent 066c03872d
commit 769c0c1bf5

View file

@ -47,6 +47,12 @@ const INFRA_HEALTH = {
portal: { host: '10.10.10.102', port: 3000 },
auth: { host: '10.10.10.101', port: 3001 },
settings: { host: '10.10.10.116', port: 3080 },
// Shared infra, not a deployable app (no Forgejo repo — provisioned by
// stack-init's deploy_mqtt_broker()) — listed here only so it's a known
// /exec target for the portal's MQTT inspector tab and shows in the Shell
// tab's container list. Its /health check will always show "unreachable"
// since Mosquitto doesn't speak HTTP — that's expected, not a fault.
'mqtt-broker': { host: '10.10.10.104', port: 1883 },
}
const INFRA_DEPLOY = {
portal: { host: '10.10.10.102', path: '/opt/portal' },