Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/acelinkio/argocd-homelab
GitOps driven homelab using ArgoCD
https://github.com/acelinkio/argocd-homelab
argocd homelab infrastructure-as-code kubernetes
Last synced: 3 months ago
JSON representation
GitOps driven homelab using ArgoCD
- Host: GitHub
- URL: https://github.com/acelinkio/argocd-homelab
- Owner: acelinkio
- License: mit
- Created: 2023-06-13T04:41:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-22T11:59:55.000Z (6 months ago)
- Last Synced: 2024-05-22T13:33:45.365Z (6 months ago)
- Topics: argocd, homelab, infrastructure-as-code, kubernetes
- Homepage:
- Size: 1.06 MB
- Stars: 30
- Watchers: 1
- Forks: 2
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Overview
GitOps driven homelab using ArgoCD with a flat repository structure.
# Project Structure
```
.
├── .github/ # Github related files
│ └── renovate.json5 # RenovateBot configuration
├── .vscode/ # Visual Studio Code configs
│ ├── extensions.json # Extension recomendations
│ └── settings.json # Project specific settings
├── docs/ # Documentation
│ ├── faq.md # Frequently Asked Questions
│ ├── netowrk.md # Networking details
│ └── setup.md # Installation steps
├── manifest/ # Watched by ArgoCD ApplicationSet
│ └── $namespace.yaml # Per namespace, App of Apps
├── .gitignore # Ignored files list
└── README.md # This file
```# ArgoCD Structure
An ApplicationSet dynamically generates an Applications for each yaml file inside of the manifest directory. That Application is AppOfApps, mirroring the filename that it was generated from. That AppOfApps may contain child Application resources for deploying Helm charts.Logical
Rendered Example
```mermaid
erDiagram
ApplicationSet ||--|{ AppOfApps : "each manifest/*.yaml generates"
AppOfApps ||--o{ Application : "may contain additional"
```
```mermaid
flowchart TD
A[ApplicationSet] -----> B(kube-system.yaml)
B -----> D[coredns]
B -----> E[cilium]
B -----> F[metrics-server]
```# Docs
* [application](docs/application.md)
* [faq](docs/faq.md)
* [network](docs/network.md)
* [secret](docs/secret.md)
* [setup](docs/setup.md)