Files
k8s-apps/graphviz
2026-04-02 11:37:49 +00:00
..
.
2026-04-02 11:37:49 +00:00
2026-04-01 16:19:41 +00:00

🌳 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:

digraph {
  "Internet" -> "Ingress"
  "Ingress" -> "Nextcloud"
  "Ingress" -> "Gitea"
  "Nextcloud" -> "CephFS"
}