Update stale service IP references after VLAN 30 cutover

This commit is contained in:
Fizzlepoof
2026-05-22 20:36:12 +00:00
parent 8c72a0c287
commit c5ab126513
43 changed files with 1789 additions and 2161 deletions

View File

@@ -144,7 +144,7 @@ cat ~/.ssh/n8n_watchdog.pub >> ~/.ssh/authorized_keys
cat ~/.ssh/n8n_watchdog # paste this into n8n → Credentials → SSH (Private Key)
```
In n8n: Credentials → New → SSH (Private Key) → host `10.5.1.6`, user `truenas_admin`, paste private key. Name it `PD SSH`.
In n8n: Credentials → New → SSH (Private Key) → host `10.5.30.6`, user `truenas_admin`, paste private key. Name it `PD SSH`.
Workflow 16 also runs `sudo docker restart` and the mount script over SSH. Add a NOPASSWD sudoers rule so it doesn't hang:
@@ -159,7 +159,7 @@ sudo visudo -f /etc/sudoers.d/n8n-watchdog
Create the `knowledge_base` collection before using the RAG workflows:
```bash
curl -X PUT http://10.5.1.6:6333/collections/knowledge_base \
curl -X PUT http://10.5.30.6:6333/collections/knowledge_base \
-H 'Content-Type: application/json' \
-d '{
"vectors": {
@@ -174,7 +174,7 @@ curl -X PUT http://10.5.1.6:6333/collections/knowledge_base \
### Pull nomic-embed-text into Ollama (required for workflows 02, 05, 08)
```bash
curl http://10.5.1.6:11434/api/pull -d '{"name": "nomic-embed-text"}'
curl http://10.5.30.6:11434/api/pull -d '{"name": "nomic-embed-text"}'
```
### Paperless Webhook (required for workflows 03, 05, 17, and 19)
@@ -387,7 +387,7 @@ Add these to `automation/.env` and expose them in the n8n `environment:` block:
|----------|----------|---------|---------|
| `PAPERLESS_BASE_URL` | yes | `https://paperless.paccoco.com` | Paperless API/UI base URL |
| `PAPERLESS_API_TOKEN` | yes | none | Paperless API token; used as `Token ...` |
| `LITELLM_BASE_URL` | yes | `http://10.5.1.6:4000` | LiteLLM OpenAI-compatible endpoint |
| `LITELLM_BASE_URL` | yes | `http://10.5.30.6:4000` | LiteLLM OpenAI-compatible endpoint |
| `LITELLM_API_KEY` | yes | none | LiteLLM key |
| `PAPERLESS_TRIAGE_MODEL` | no | `gpt-4o-mini` | Model for strict JSON triage |
| `PAPERLESS_TRIAGE_REVIEW_QUEUE_PATH` | yes | `/data/paperless_review.json` | Sanitized JSON queue path mounted for Doris Dashboard |