{"id":19393136,"url":"https://github.com/ruanbekker/argocd-examples","last_synced_at":"2026-05-13T22:37:07.287Z","repository":{"id":238202219,"uuid":"796084184","full_name":"ruanbekker/argocd-examples","owner":"ruanbekker","description":"Argo CD Examples","archived":false,"fork":false,"pushed_at":"2025-01-21T07:08:37.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-31T06:33:35.783Z","etag":null,"topics":["argocd","argocd-example","devops","gitops","helm","kubernetes"],"latest_commit_sha":null,"homepage":"https://ruan.dev","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/ruanbekker.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}},"created_at":"2024-05-04T22:12:57.000Z","updated_at":"2025-01-21T07:08:37.000Z","dependencies_parsed_at":"2024-05-04T23:21:34.010Z","dependency_job_id":"1c76d1cf-1791-46ac-bf25-08f679018902","html_url":"https://github.com/ruanbekker/argocd-examples","commit_stats":null,"previous_names":["ruanbekker/argocd-examples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ruanbekker/argocd-examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fargocd-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fargocd-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fargocd-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fargocd-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ruanbekker","download_url":"https://codeload.github.com/ruanbekker/argocd-examples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fargocd-examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33003037,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"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":["argocd","argocd-example","devops","gitops","helm","kubernetes"],"created_at":"2024-11-10T10:32:32.770Z","updated_at":"2026-05-13T22:37:07.271Z","avatar_url":"https://github.com/ruanbekker.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# argocd-examples\nArgo CD Examples\n\n## Argo CD Deployment\n\nTo follow along Argo CD needs to be installed.\n\n\u003e [!IMPORTANT]  \n\u003e The following can be used to install Argo CD to your cluster:\n\u003e ```bash\n\u003ekubectl create namespace argocd\n\u003ekubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml\n\u003e```\n\n### Deployment using Terraform\n\nIf you need a Kind Kubernetes Cluster and ArgoCD Deployed, you can look at: [server-deployment/terraform](./server-deployment/terraform/README.md)\n\n### Deployment with Bash and Extras\n\nIf you need a kubernetes cluster, gitea and argocd on a kind cluster you can check out: `_scripts/bootstrap.sh`\n\n## Examples\n\n- [helm-files-inside-applications](#helm-values-inside-application)\n- [helm-values-from-file](#helm-values-from-file)\n- [git-and-list-generators](#git-and-list-generators)\n  - [multiple-tags](#multiple-tags)\n- [matrix-generators](#matrix-generators)\n  - [multiple-environment-value-files](#multiple-environment-value-files)\n\n### helm-values-inside-application\n\n\u003ccode style=\"color : aqua\"\u003eJump\u003c/code\u003e to directory: [./helm-values-inside-application/](./helm-values-inside-application/)\n\nThe helm values are managed inside the `Application`:\n\n```yaml\n  source:\n    chart: microservice\n    repoURL: https://charts.ruan.dev\n    targetRevision: 3.1.1\n    helm:\n      values: |\n        replicaCount: 1\n```\n\n### helm-values-from-file\n\n\u003ccode style=\"color : aqua\"\u003eJump\u003c/code\u003e to directory: [./helm-values-from-file/](./helm-values-from-file/)\n\nThe application is defined in `helm-values-from-file/apps/app-dev.yaml` and the values are defined in `helm-values-from-file/values-dev.yaml` and argo will monitor this path on git:\n\n```yaml\n  source:\n    path: helm-values-from-file\n    repoUrl: https://github.com/ruanbekker/argocd-examples\n    targetRevision: HEAD\n    helm:\n      valueFiles:\n      - values-dev.yaml\n```\n\n### git-and-list-generators\n\n#### multiple-tags\n\n\u003ccode style=\"color : aqua\"\u003eJump\u003c/code\u003e to directory: [./git-and-list-generators/](./git-and-list-generators/)\n\nThe application is defined in `git-and-list-generators/multiple-git-tags-application.yaml` and listens for applications in `apps/` and does the following:\n\nFor staging:\n- If the commit tag is `staging` it will append a `staging-` prefix to the name and deploy to the `staging` namespace in the `kind-staging` cluster.\n\nFor production:\n- If the commit tag is `production` it will append a `prod-` prefix to the name and deploy to the `prod` namespace in the `kind-prod` cluster.\n\n\n### matrix-generators\n\n#### multiple-environment-value-files\n\n\u003ccode style=\"color : aqua\"\u003eJump\u003c/code\u003e to directory: [./matrix-generators/](./matrix-generators/)\n\nThe ApplicationSet is defined in `git-and-list-generators/multiple-envs-applications.yaml` and listens for applications under the `apps/` directory in the git repository. It uses a `git generator` to discover application directories and a `matrix generator` to combine the application paths with environment-specific configurations (dev, staging, production). \n\nFor each environment (dev, staging, production), it deploys the corresponding environment-specific values.yaml file using Helm. The deployments are targeted to the appropriate Kubernetes namespaces (dev, staging, production), and the ApplicationSet automatically handles synchronization, pruning, and namespace creation.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruanbekker%2Fargocd-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fruanbekker%2Fargocd-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruanbekker%2Fargocd-examples/lists"}