A fully automated, GitOps-managed Kubernetes cluster running on Lenovo ThinkCentre hardware and Talos Linux.
- Control Plane: 2x Lenovo ThinkCentre M900s Tiny
- Workers: 3x Lenovo ThinkCentre M900s Tiny
- Storage: Synology NAS (iSCSI)
- Base OS: Talos Linux
- Container Orchestration: Kubernetes
- GitOps Engine: Argo CD
- Storage: iSCSI-mounted Synology volumes
- GitOps-First Approach: All cluster configurations and applications are managed through Git using the App of Apps pattern
- Declarative Configuration: Everything-as-code philosophy
- Automated Deployments: Changes to this repository automatically sync to the cluster via Argo CD
- Persistent Storage: Integration with Synology NAS using iSCSI for reliable data persistence
graph TD
A[GitHub Repository] -->|GitOps| B[Argo CD]
B -->|Manages| C[Kubernetes Cluster]
C -->|Control Plane| D[2x ThinkCentre M900s]
C -->|Workers| E[3x ThinkCentre M900s]
C -->|Storage| F[Synology NAS]
B -->|App of Apps| G[Applications]
- Cluster OS: Talos Linux with custom configurations for iSCSI support
- Networking: MetalLB + Traefik
- Storage: iSCSI CSI driver for Synology integration
- GitOps: Argo CD with App of Apps pattern
- Working knowledge of Kubernetes
- Access to similar hardware or VMs
- Basic understanding of GitOps principles
- Clone this repository
- Configure your Talos Linux nodes
- Deploy Argo CD
- Configure the App of Apps
The cluster configuration follows the App of Apps pattern, with the following structure:
├── apps
│ ├── apps
│ │ ├── cloudflare-tunnel.yaml
│ │ ├── grafana.yaml
│ │ ├── linkding.yaml
│ │ ├── loki.yaml
│ │ ├── metallb.yaml
│ │ ├── prometheus.yaml
│ │ ├── promtail.yaml
│ │ ├── sealed-secrets.yaml
│ │ └── traefik.yaml
│ ├── apps-of-apps.yaml
│ ├── homepage
│ ├── linkding
└── infrastructure
├── monitoring
│ ├── grafana
│ ├── loki
│ ├── prometheus
│ └── promtail
├── networking
│ ├── cloudflare-tunnel
│ ├── metallb
│ └── traefik
├── secrets
│ └── sealed-secrets
└── storage
├── longhorn
└── synology
This repository uses Argo CD to automatically sync changes to the cluster. The App of Apps pattern ensures that all applications are managed consistently and can be deployed or updated with minimal manual intervention.
- OS updates are handled through Talos Linux machinery
- Application updates are managed through GitOps workflows
- Infrastructure updates use replicate.
- Persistent data is stored on Synology NAS
- TODO: Strategy development
Contributions are welcome! Please feel free to submit a Pull Request.
🔍 Note: This is a living document. As the cluster evolves, so will this documentation.