{"id":18592342,"url":"https://github.com/tankibaj/gitops-multiple-cluster-with-argocd","last_synced_at":"2026-04-18T01:04:28.693Z","repository":{"id":116077002,"uuid":"485563802","full_name":"tankibaj/gitops-multiple-cluster-with-argocd","owner":"tankibaj","description":"GitOps - manage multiple eks clusters with ArgoCD","archived":false,"fork":false,"pushed_at":"2022-05-31T19:22:47.000Z","size":235,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-16T10:09:48.781Z","etag":null,"topics":["argocd","aws","helm","kubernetes","sops","terraform"],"latest_commit_sha":null,"homepage":"","language":"HCL","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/tankibaj.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":"2022-04-25T23:15:13.000Z","updated_at":"2024-07-11T17:31:13.000Z","dependencies_parsed_at":"2024-07-23T19:00:07.016Z","dependency_job_id":null,"html_url":"https://github.com/tankibaj/gitops-multiple-cluster-with-argocd","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tankibaj/gitops-multiple-cluster-with-argocd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tankibaj%2Fgitops-multiple-cluster-with-argocd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tankibaj%2Fgitops-multiple-cluster-with-argocd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tankibaj%2Fgitops-multiple-cluster-with-argocd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tankibaj%2Fgitops-multiple-cluster-with-argocd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tankibaj","download_url":"https://codeload.github.com/tankibaj/gitops-multiple-cluster-with-argocd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tankibaj%2Fgitops-multiple-cluster-with-argocd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31952208,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"ssl_error","status_checked_at":"2026-04-18T00:39:20.671Z","response_time":62,"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","aws","helm","kubernetes","sops","terraform"],"created_at":"2024-11-07T01:08:11.057Z","updated_at":"2026-04-18T01:04:28.669Z","avatar_url":"https://github.com/tankibaj.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitOps - Manage multiple EKS clusters with ArgoCD\n\n![](images/concept.png)\n![](images/architecture.png)\n\n\u003cbr/\u003e\n\n## AWS Command Line Interface\n\nThe AWS Command Line Interface (CLI) is a unified tool to manage your AWS services.\n\n##### [Install AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html)\n\n```bash\nbrew install awscli\n```\n\n##### [Configure AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html)\n\n```bash\naws configure\n```\n\n```text\n# Example configuration\nAWS Access Key ID [None]: AKIAIOSFODNN7EXAMPLE\nAWS Secret Access Key [None]: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY\nDefault region name [None]: eu-central-1\nDefault output format [None]: json\n```\n\n\u003cbr/\u003e\n\n\n## Terraform\n\nYou must install AWS CLI and configure it with the credentials before you use Terraform to manage AWS resources.\n\n##### [Install Terraform](https://www.terraform.io/downloads)\n\n```bash\nbrew tap hashicorp/tap\n```\n\n```bash\nbrew install hashicorp/tap/terraform\n```\n##### [Provision infrastructure](https://www.terraform.io/cli/run)\n\nTo initialize a working directory that contains a Terraform configuration\n\n```bash\nterraform init\n```\n\nTo see an execution plan that Terraform will make to your infrastructure based on the current configuration\n\n```bash\nterraform plan\n```\n\nExecutes the actions that proposed in a Terraform plan\n\n```bash\n  terraform apply\n```\n\n\n\n\u003cbr/\u003e\n\n## SOPS\n\nEncrypt secrets with SOPS to commit secrets to version control.\n\n##### [Install SOPS](https://github.com/mozilla/sops#id3)\n\n```bash\nbrew install sops\n```\n\n**`.sops.yaml`**\n\n```bash\ncat \u003c\u003cEOF \u003e ~/.sops.yaml\ncreation_rules:\n  - kms: \"arn:aws:kms:eu-central-1:111111111111:alias/management-sops\"\nEOF\n```\n\n\n\n\u003cbr/\u003e\n\n## Helm\n\nHelm to deploy ArgoCD on EKS cluster.\n\n##### [Install Helm](https://helm.sh/docs/intro/install/)\n\n```bash\nbrew install helm\n```\n\n\n\n\u003cbr/\u003e\n\n## Helm secret plugin\n\n##### [Install Helm Secrets](https://github.com/jkroepke/helm-secrets/wiki/Installation)\n```bash\nhelm plugin install https://github.com/jkroepke/helm-secrets\n```\n\n##### Encrypt secret\n\n```bash\nhelm secrets enc secrets.yaml\n```\n\n##### Decrypt secret\n\n```bash\nhelm secrets view secrets.yaml\n```\n\n##### Edit encrypt secret\n\n```bash\nhelm secrets edit secrets.yaml\n```\n\n\n\n\u003cbr/\u003e\n\n## Provision\n\n- [Create aws irsa on management account](management-account/irsa)\n- [Deploy argocd on management eks cluster](management-account/argocd)\n- [Create iam role on development account](development-account/iam-role)\n- [Map iam role with eks cluster role](development-account/rbac)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftankibaj%2Fgitops-multiple-cluster-with-argocd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftankibaj%2Fgitops-multiple-cluster-with-argocd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftankibaj%2Fgitops-multiple-cluster-with-argocd/lists"}