diff --git a/frigate/frigate.yaml b/frigate/frigate.yaml index 91249d4..d907d5f 100644 --- a/frigate/frigate.yaml +++ b/frigate/frigate.yaml @@ -40,6 +40,22 @@ data: - record detect: enabled: true + + record: + enabled: true + + motion: + days: 3 + + alerts: + retain: + days: 14 + mode: motion + + detections: + retain: + days: 14 + mode: motion --- apiVersion: v1 kind: PersistentVolumeClaim diff --git a/graphviz/README.md b/graphviz/README.md new file mode 100644 index 0000000..17c3e76 --- /dev/null +++ b/graphviz/README.md @@ -0,0 +1,31 @@ +# 🌳 Graphviz Diagrams + +This repository uses **Graphviz** to describe infrastructure, flows, and dependencies as code. + +Instead of manually drawing diagrams, we define relationships and let Graphviz generate layouts automatically. + +--- + +## ✨ Why Graphviz? + +- No manual positioning of boxes +- Clean, automatic layouts +- Perfect for: + - infrastructure diagrams + - service dependencies + - Kubernetes flows + - network topology + +--- + +## 🧱 Basic Example + +Create a file like `example.dot`: + +```dot +digraph { + "Internet" -> "Ingress" + "Ingress" -> "Nextcloud" + "Ingress" -> "Gitea" + "Nextcloud" -> "CephFS" +} \ No newline at end of file