{"id":28523138,"url":"https://github.com/upbound/controller-argocd-core","last_synced_at":"2026-01-31T04:32:35.490Z","repository":{"id":294785939,"uuid":"978300727","full_name":"upbound/controller-argocd-core","owner":"upbound","description":"Upbound controller for argocd","archived":false,"fork":false,"pushed_at":"2025-08-08T12:45:02.000Z","size":63,"stargazers_count":1,"open_issues_count":3,"forks_count":1,"subscribers_count":13,"default_branch":"main","last_synced_at":"2025-08-08T13:08:13.347Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","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/upbound.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}},"created_at":"2025-05-05T19:18:35.000Z","updated_at":"2025-08-08T12:45:05.000Z","dependencies_parsed_at":"2025-06-07T04:17:56.666Z","dependency_job_id":"4062db1c-e070-40eb-b854-7486f25b68e7","html_url":"https://github.com/upbound/controller-argocd-core","commit_stats":null,"previous_names":["upbound/controller-argocd-core"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/upbound/controller-argocd-core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontroller-argocd-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontroller-argocd-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontroller-argocd-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontroller-argocd-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/upbound","download_url":"https://codeload.github.com/upbound/controller-argocd-core/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontroller-argocd-core/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28929701,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T04:05:25.756Z","status":"ssl_error","status_checked_at":"2026-01-31T04:02:35.005Z","response_time":128,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-06-09T10:07:20.728Z","updated_at":"2026-01-31T04:32:35.475Z","avatar_url":"https://github.com/upbound.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# controller-argocd-core\n\nThis repository provides a controller that enables declarative installation of\nArgoCD Core within an Upbound control plane.\n\n## Overview\n\nThe ArgoCD Core Controller facilitates continuous delivery and declarative configuration management of Kubernetes applications using GitOps principles. It deploys the following ArgoCD components in non-HA mode: `argocd-server`, `application-controller`, `applicationset-controller`, `repo-server`, and `redis`.\n\n## Usage\n\n### Prerequisites\n\n- Upbound account with appropriate permissions\n- kubectl CLI installed and configured\n- Upbound CLI (`up`) installed\n\n### Installation\n\n1. Create a control plane in Upbound\n\n```bash\nUPBOUND_ORG=\"your_upbound_org\"\n# Other spaces are available, check with `up ctx`\n# you need a space with enabled controller feature\nUPBOUND_SPACE=\"space-the-final-frontier\"\nUPBOUND_GROUP=\"your_group_name\"\nUPBOUND_CTP=\"your_controlplane_name\"\n\n# Create Profile\nup profile create $UPBOUND_ORG --organization $UPBOUND_ORG\nup profile use $UPBOUND_ORG\n\n# Login and switch context\nup login -a $UPBOUND_ORG --profile $UPBOUND_ORG\nup ctx \"${UPBOUND_ORG}/${UPBOUND_SPACE}\"\n\n# Create group\nup group create \"${UPBOUND_GROUP}\"\n\n# Switch context to group\nup ctx \"${UPBOUND_ORG}/${UPBOUND_SPACE}/${UPBOUND_GROUP}\"\n\n# Create control plane\nup ctp create \"${UPBOUND_CTP}\" --crossplane-channel=\"Rapid\"\n\n# Check status of control plane (should show Healthy: True)\nup ctp list\n\n# Switch context to control plane (might take a minute to become ready)\nup ctx \"${UPBOUND_ORG}/${UPBOUND_SPACE}/${UPBOUND_GROUP}/${UPBOUND_CTP}\"\n```\n\n2. Install the controller:\n\n   *This installs the controller package into your control plane, which includes the ArgoCD Core CRD and the manifests required to run ArgoCD Core.*\n\n```bash\nUP_CHART_VERSION=\"\"\n\ncat \u003c\u003cEOF | kubectl apply -f -\n  apiVersion: pkg.upbound.io/v1alpha1\n  kind: Controller\n  metadata:\n    name: controller-argocd-core\n  spec:\n    package: xpkg.upbound.io/upbound/controller-argocd-core:\"${UP_CHART_VERSION}\"\nEOF\n```\n\n## Development\n\n### Testing\n\nThe repository includes test configurations:\n\n- Basic e2e test: `tests/e2etest-argocd-core/`\n\nTo run tests:\n\n```bash\nUP_CHART_VERSION=\"\" up test run tests/* --e2e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupbound%2Fcontroller-argocd-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fupbound%2Fcontroller-argocd-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupbound%2Fcontroller-argocd-core/lists"}