{"id":51469500,"url":"https://github.com/pausic/homeops","last_synced_at":"2026-07-06T15:30:43.942Z","repository":{"id":357231699,"uuid":"1129679765","full_name":"pausic/homeops","owner":"pausic","description":"GitOps-managed k3s homelab cluster with Flux","archived":false,"fork":false,"pushed_at":"2026-06-19T06:18:06.000Z","size":205,"stargazers_count":5,"open_issues_count":12,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-19T08:19:56.100Z","etag":null,"topics":["flux","gitops","helm","k3s","k8s","k8s-at-home","renovate","selfhosted"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pausic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-07T12:34:49.000Z","updated_at":"2026-06-10T09:20:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pausic/homeops","commit_stats":null,"previous_names":["pausic/homeops"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pausic/homeops","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pausic%2Fhomeops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pausic%2Fhomeops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pausic%2Fhomeops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pausic%2Fhomeops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pausic","download_url":"https://codeload.github.com/pausic/homeops/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pausic%2Fhomeops/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35197534,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-06T02:00:07.184Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flux","gitops","helm","k3s","k8s","k8s-at-home","renovate","selfhosted"],"created_at":"2026-07-06T15:30:42.999Z","updated_at":"2026-07-06T15:30:43.929Z","avatar_url":"https://github.com/pausic.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# homeops\n\n### GitOps-managed Kubernetes homelab\n\n[![k3s](https://img.shields.io/badge/k3s-v1.34.3-blue?logo=kubernetes\u0026logoColor=white)](https://k3s.io/)\n[![Flux](https://img.shields.io/badge/flux-v2.7.5-blue?logo=flux\u0026logoColor=white)](https://fluxcd.io/)\n[![GitHub last commit](https://img.shields.io/github/last-commit/pausic/homeops?logo=github\u0026color=purple)](https://github.com/pausic/homeops/commits/master)\n\n\u003c/div\u003e\n\n---\n\n## :cloud: Overview\n\nThis repository defines the state of my single-node [k3s](https://k3s.io/) cluster using [Flux v2](https://fluxcd.io/) and GitOps principles.\n\n## :bricks: Infrastructure\n\n| Component | Details |\n|-----------|---------|\n| **Node** | Single-node k3s cluster |\n| **OS** | Ubuntu |\n| **Ingress** | [Traefik](https://traefik.io/) |\n| **Storage** | [Longhorn](https://longhorn.io/) |\n| **Certificates** | [cert-manager](https://cert-manager.io/) (self-signed CA) |\n| **Databases** | [CloudNativePG](https://cloudnative-pg.io/) |\n| **Secrets** | [SOPS](https://github.com/getsops/sops) |\n\n## :hourglass_flowing_sand: GitOps Flow\n\nFlux Kustomizations are chained with `wait: true` to enforce deployment order:\n\n```\nflux-system (bootstrap)\n  └─ infra-sources (HelmRepositories, OCIRepositories)\n       └─ infra-controllers (Traefik, Longhorn, CNPG, cert-manager, ...)\n            └─ infra-configs (StorageClass, PG Clusters, Middleware, Certificates)\n                 └─ apps (Monitoring, Media, Networking, Productivity)\n```\n\n## :telescope: Namespaces\n\n- [`flux-system`](./clusters/homelab/flux-system/) \n- [`kube-system`](./infrastructure/controllers/) \n- [`longhorn-system`](./infrastructure/controllers/) \n- [`monitoring`](./apps/monitoring/) \n- [`storage`](./infrastructure/configs/cnpg/) \n- [`media`](./apps/media/) \n- [`networking`](./apps/networking/) \n- [`productivity`](./apps/productivity/) \n\n## :file_folder: Repository Structure\n\n```\nhomeops/\n├── clusters/homelab/          # Flux bootstrap entry point\n├── infrastructure/\n│   ├── sources/               # HelmRepository / OCIRepository definitions\n│   ├── controllers/           # Infrastructure HelmReleases\n│   └── configs/               # Post-controller config (certs, PG clusters, middleware)\n└── apps/\n    ├── monitoring/            # Observability stack\n    ├── media/                 # Media management\n    ├── networking/            # Network services\n    └── productivity/          # Productivity tools\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpausic%2Fhomeops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpausic%2Fhomeops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpausic%2Fhomeops/lists"}