{"id":50886057,"url":"https://github.com/hops-ops/gitops-template","last_synced_at":"2026-06-15T17:02:22.881Z","repository":{"id":349254206,"uuid":"1201613643","full_name":"hops-ops/gitops-template","owner":"hops-ops","description":"Template repo for hops GitopsStack — ArgoCD app-of-apps structure","archived":false,"fork":false,"pushed_at":"2026-04-05T00:28:36.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-05T02:24:08.514Z","etag":null,"topics":[],"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-04-04T23:10:53.000Z","updated_at":"2026-04-05T00:28:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hops-ops/gitops-template","commit_stats":null,"previous_names":["hops-ops/gitops-template"],"tags_count":null,"template":true,"template_full_name":null,"purl":"pkg:github/hops-ops/gitops-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fgitops-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fgitops-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fgitops-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fgitops-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hops-ops","download_url":"https://codeload.github.com/hops-ops/gitops-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Fgitops-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":[],"created_at":"2026-06-15T17:02:21.696Z","updated_at":"2026-06-15T17:02:22.870Z","avatar_url":"https://github.com/hops-ops.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitOps Repository\n\nThis repository is managed by [ArgoCD](https://argo-cd.readthedocs.io/) and deployed by the [hops GitopsStack](https://github.com/hops-ops/gitops-stack).\n\n## How It Works\n\nArgoCD watches this repo and automatically syncs changes to your cluster. The structure follows an **app-of-apps** pattern:\n\n```\napps/                                  \u003c- Drop Application manifests here\ncrossplane/                            \u003c- Crossplane Configuration packages and resources\n```\n\n## Adding an Application\n\nCreate a YAML file in `apps/` with an ArgoCD Application manifest:\n\n```yaml\n# apps/my-app.yaml\napiVersion: argoproj.io/v1alpha1\nkind: Application\nmetadata:\n  name: my-app\n  namespace: argocd\nspec:\n  project: default\n  source:\n    repoURL: https://github.com/my-org/my-app.git\n    path: k8s/              # path to manifests in the source repo\n    targetRevision: HEAD\n  destination:\n    server: https://kubernetes.default.svc\n    namespace: my-app\n  syncPolicy:\n    automated:\n      selfHeal: true\n      prune: true\n    syncOptions:\n    - CreateNamespace=true\n```\n\nCommit and push — ArgoCD picks it up automatically.\n\n### Helm Chart Example\n\n```yaml\n# apps/ingress-nginx.yaml\napiVersion: argoproj.io/v1alpha1\nkind: Application\nmetadata:\n  name: ingress-nginx\n  namespace: argocd\nspec:\n  project: default\n  source:\n    repoURL: https://kubernetes.github.io/ingress-nginx\n    chart: ingress-nginx\n    targetRevision: 4.12.1\n    helm:\n      valuesObject:\n        controller:\n          replicaCount: 2\n  destination:\n    server: https://kubernetes.default.svc\n    namespace: ingress-nginx\n  syncPolicy:\n    automated:\n      selfHeal: true\n      prune: true\n    syncOptions:\n    - CreateNamespace=true\n```\n\n## What ArgoCD Syncs\n\n| ArgoCD Application | Watches | Purpose |\n|--------------------|---------|---------|\n| `apps` | `apps/` | Your applications (app-of-apps root) |\n| `crossplane` | `crossplane/` | Crossplane Configuration packages and resources (optional) |\n\n## Environments\n\nFor multiple environments, use separate directories per environment and create an Application per environment:\n\n```\napps/\n  staging/\n    my-app.yaml           # points to staging branch/values\n  production/\n    my-app.yaml           # points to production branch/values\n```\n\nOr use [ApplicationSets](https://argo-cd.readthedocs.io/en/latest/user-guide/application-set/) for automatic environment generation from folder structure.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Fgitops-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhops-ops%2Fgitops-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Fgitops-template/lists"}