From 5b9f54bc01943cf40b8ff6c60914d91589971f7f Mon Sep 17 00:00:00 2001 From: Terry Byte Date: Tue, 4 Aug 2026 02:05:18 -0400 Subject: [PATCH] Initial lab-ops scaffold by Terry Byte --- .gitignore | 5 +++++ README.md | 11 +++++++++++ fixes/README.md | 5 +++++ hardware.md | 4 ++++ issues/README.md | 3 +++ services.md | 6 ++++++ 6 files changed, 34 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 fixes/README.md create mode 100644 hardware.md create mode 100644 issues/README.md create mode 100644 services.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62bb70f --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Ignore runtime caches +*.pyc +__pycache__/ +app/backend/data/cache/ +app/backend/data/uploads/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..52ae51e --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Lab Ops - InfernalAquatics DevOps + +This repository is the canonical lab log for the InfernalAquatics DevOps Infrastructure. + +Contents: +- hardware.md: hardware inventory +- services.md: running services and brief notes +- issues/: short-lived issue notes and troubleshooting +- fixes/: small fix notes and commands + +Managed by Terry Byte - Lead Systems Admin at Infernal Aquatics DevOps. diff --git a/fixes/README.md b/fixes/README.md new file mode 100644 index 0000000..45ad744 --- /dev/null +++ b/fixes/README.md @@ -0,0 +1,5 @@ +# Fixes + +Small fix notes: commands run, why, and verification steps. + +Example: fixed OpenWebUI->Ollama connectivity by running container with host networking and OLLAMA_BASE_URL=http://127.0.0.1:11434 diff --git a/hardware.md b/hardware.md new file mode 100644 index 0000000..142f1b2 --- /dev/null +++ b/hardware.md @@ -0,0 +1,4 @@ +# Hardware Inventory + +- monolith (192.168.1.4): Ubuntu 24.04 LTS, Intel Xeon E5-2650 (2 sockets, 8 cores/socket, 32 vCPU), 62 GiB RAM, 1.6TB LVM root +- Net-Controller (192.168.1.3): Ubuntu 24.04 LTS, Intel i5-1035G1, ~11.45 GiB RAM diff --git a/issues/README.md b/issues/README.md new file mode 100644 index 0000000..487e1ea --- /dev/null +++ b/issues/README.md @@ -0,0 +1,3 @@ +# Issues + +Short issue notes and troubleshooting. Each file documents problem, diagnosis, resolution. diff --git a/services.md b/services.md new file mode 100644 index 0000000..33f1519 --- /dev/null +++ b/services.md @@ -0,0 +1,6 @@ +# Services + +Current notable services: +- Coolify (docker) on Net-Controller +- Ollama (host) on Monolith +- Open WebUI (docker) on Monolith