fix(hermesagent): correct JSON metadata

- default_credentials: username null/null (no SSH login for hermes
  service account; access is via root like all PVE Helper Scripts)
- Update setup note to reference root instead of hermes user
- Update dashboard tunnel note to use root and -fNL flags
This commit is contained in:
Stephen Chin
2026-05-02 12:10:09 -07:00
parent aa975798a1
commit 21dfffd158

View File

@@ -28,7 +28,7 @@
} }
], ],
"default_credentials": { "default_credentials": {
"username": "hermes", "username": null,
"password": null "password": null
}, },
"notes": [ "notes": [
@@ -37,7 +37,7 @@
"type": "warning" "type": "warning"
}, },
{ {
"text": "After container startup, SSH in as the 'hermes' user and run 'hermes setup' to configure your LLM provider (OpenRouter, Anthropic, OpenAI, Nous Portal, or custom endpoint).", "text": "After container startup, SSH in as root and run 'hermes setup' to configure your LLM provider (OpenRouter, Anthropic, OpenAI, Nous Portal, or custom endpoint).",
"type": "info" "type": "info"
}, },
{ {
@@ -45,7 +45,7 @@
"type": "info" "type": "info"
}, },
{ {
"text": "Access the web dashboard via SSH tunnel: ssh -L 9119:localhost:9119 hermes@<container-ip>, then open http://localhost:9119", "text": "Access the web dashboard via SSH tunnel: ssh -fNL 9119:localhost:9119 root@<container-ip>, then open http://localhost:9119",
"type": "info" "type": "info"
} }
] ]