{"id":50886115,"url":"https://github.com/hops-ops/flux-gitops-template","last_synced_at":"2026-06-15T17:02:41.086Z","repository":{"id":360320983,"uuid":"1249624691","full_name":"hops-ops/flux-gitops-template","owner":"hops-ops","description":"Flux-compatible GitOps repository template for Hops","archived":false,"fork":false,"pushed_at":"2026-05-25T22:48:57.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-26T00:33:18.749Z","etag":null,"topics":["flux","gitops","hops"],"latest_commit_sha":null,"homepage":null,"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/hops-ops.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-05-25T22:34:28.000Z","updated_at":"2026-05-25T22:49:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hops-ops/flux-gitops-template","commit_stats":null,"previous_names":["hops-ops/flux-gitops-template"],"tags_count":null,"template":true,"template_full_name":null,"purl":"pkg:github/hops-ops/flux-gitops-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fflux-gitops-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fflux-gitops-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fflux-gitops-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fflux-gitops-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hops-ops","download_url":"https://codeload.github.com/hops-ops/flux-gitops-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fflux-gitops-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34372130,"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-06-15T02:00:07.085Z","response_time":63,"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","hops"],"created_at":"2026-06-15T17:02:39.977Z","updated_at":"2026-06-15T17:02:41.075Z","avatar_url":"https://github.com/hops-ops.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flux GitOps Repository\n\nThis repository is a Hops Flux GitOps template. It is intended to be used by\n`FluxGitopsStack`, which creates the GitHub repository, installs Flux, and wires\nFlux `Kustomization` resources to these paths:\n\n```text\napps/        # application manifests and Flux app resources\ncrossplane/  # optional Crossplane packages and platform resources\n```\n\nFlux auto-generates the Kustomize input for these directories when no\n`kustomization.yaml` file is present. Add Kubernetes YAML files under a watched\ndirectory and Flux applies them. The `.gitkeep` files only keep the empty\ndirectories present in Git; Flux ignores them.\n\n## Applications\n\nPlain Kubernetes manifests can live directly under `apps/`.\n\nFor Helm charts, commit Flux `HelmRepository` and `HelmRelease` resources.\n\n```yaml\n# apps/ingress-nginx.yaml\napiVersion: source.toolkit.fluxcd.io/v1\nkind: HelmRepository\nmetadata:\n  name: ingress-nginx\n  namespace: flux-system\nspec:\n  interval: 1h\n  url: https://kubernetes.github.io/ingress-nginx\n---\napiVersion: helm.toolkit.fluxcd.io/v2\nkind: HelmRelease\nmetadata:\n  name: ingress-nginx\n  namespace: flux-system\nspec:\n  interval: 10m\n  targetNamespace: ingress-nginx\n  install:\n    createNamespace: true\n  chart:\n    spec:\n      chart: ingress-nginx\n      version: 4.12.1\n      sourceRef:\n        kind: HelmRepository\n        name: ingress-nginx\n        namespace: flux-system\n  values:\n    controller:\n      replicaCount: 2\n```\n\nOnce committed under `apps/`, Flux reconciles the file automatically.\n\n## Crossplane\n\n`crossplane/` is optional. Enable `spec.kustomizations.crossplane.enabled` on\n`FluxGitopsStack` before expecting this path to reconcile.\n\nUse it for Crossplane packages and platform resources:\n\nExample package manifest:\n\n```yaml\napiVersion: pkg.crossplane.io/v1\nkind: Configuration\nmetadata:\n  name: platform-foundation\nspec:\n  package: ghcr.io/hops-ops/platform-foundation:v0.1.0\n```\n\n## Notes\n\n- Manifests should include their intended namespace unless they are\n  cluster-scoped.\n- Every YAML file under `apps/` and enabled `crossplane/` paths must be a valid\n  Kubernetes manifest. Keep examples, values files, and notes outside those\n  paths, or add a `kustomization.yaml` if you intentionally want explicit\n  resource selection.\n- Do not commit secrets. Use External Secrets or another secret management path.\n- `FluxGitopsStack` owns the root Flux source and path Kustomizations; only add\n  Flux bootstrap resources here if you intentionally want this repository to\n  manage Flux itself.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Fflux-gitops-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhops-ops%2Fflux-gitops-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Fflux-gitops-template/lists"}