blob: ee7e6671d41c03aff193d67093d8fe3d1f3d19a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
Laptop (Fedora)
|_ Docker
|_ k3d cluster
|_ ingress-nginx
sample app
ArgoCD
Prometheus/Grafana
CI/CD
homelab-platform/
├── README.md
├── docs/
│ ├── architecture.md
│ ├── networking.md
│ └── troubleshooting.md
├── bootstrap/
│ ├── create-cluster.sh
│ └── install-argocd.sh
├── clusters/
│ └── local-dev/
│ ├── apps.yaml
│ └── infra.yaml
├── apps/
│ ├── sample-app/
│ └── whoami/
├── infrastructure/
│ ├── ingress-nginx/
│ ├── prometheus/
│ ├── grafana/
│ └── argocd/
├── helm-values/
├── scripts/
├── .github/workflows/
└── screenshots/
|