{"id":20621143,"url":"https://github.com/tiendanube/eks-orb","last_synced_at":"2026-02-25T09:33:59.190Z","repository":{"id":47407665,"uuid":"156929947","full_name":"TiendaNube/eks-orb","owner":"TiendaNube","description":"CircleCI Orb to interact with EKS","archived":false,"fork":false,"pushed_at":"2026-02-12T21:46:38.000Z","size":308,"stargazers_count":3,"open_issues_count":8,"forks_count":0,"subscribers_count":15,"default_branch":"master","last_synced_at":"2026-02-13T05:51:35.291Z","etag":null,"topics":["circleci","eks","orb","sre"],"latest_commit_sha":null,"homepage":"https://circleci.com/orbs/registry/orb/tiendanube/eks","language":"Shell","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TiendaNube.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-11-09T23:40:37.000Z","updated_at":"2026-01-23T12:18:13.000Z","dependencies_parsed_at":"2025-07-03T04:23:11.210Z","dependency_job_id":"58bbd77f-b30a-4104-8202-bf6f4c98adca","html_url":"https://github.com/TiendaNube/eks-orb","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/TiendaNube/eks-orb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TiendaNube%2Feks-orb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TiendaNube%2Feks-orb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TiendaNube%2Feks-orb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TiendaNube%2Feks-orb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TiendaNube","download_url":"https://codeload.github.com/TiendaNube/eks-orb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TiendaNube%2Feks-orb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29816098,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T05:36:42.804Z","status":"ssl_error","status_checked_at":"2026-02-25T05:36:31.934Z","response_time":61,"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":["circleci","eks","orb","sre"],"created_at":"2024-11-16T12:16:53.260Z","updated_at":"2026-02-25T09:33:59.149Z","avatar_url":"https://github.com/TiendaNube.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EKS Orb\nOrb for installing the tools to interact with Amazon Elastic Container Service for Kubernetes (EKS) from within a\nCircleCI build job.\n\n## Usage\n\n### Setup required to use this orb\nThe following **required** dependencies must be configured in CircleCI in order to use this orb:\n\n#### Include ORBs\n```yml\norbs:\n  aws-ecr: circleci/aws-ecr@9.3.7\n  eks: tiendanube/eks@1.8.1\n```\n\n#### Add jobs execution\n```yml\n        - eks/helm-deploy:\n          name: prd-eks-deployment\n          pre-steps:\n            - aws-cli/setup:\n                role_arn: \"arn:aws:iam::201009178507:role/CircleCIRoleForOIDC_Generic\"\n                region: ${AWS_REGION_STAGING}\n          context: microservices\n          cluster-name: staging\n          region: ${AWS_REGION_STAGING}\n          s3-chart-repo: tiendanube-charts\n          release-name: ${CIRCLE_PROJECT_REPONAME}-${CIRCLE_BRANCH}\n          values-file: values-staging.yaml\n          namespace: ${CIRCLE_PROJECT_REPONAME}\n          chart: tiendanube-charts/microservices-v6\n          image-tag: stg-${CIRCLE_SHA1:0:7}\n          ...\n```\n\n\n## Useful commands to work with ORB code\n### Validate ORB\n- Make sure you're on the main branch of the source repository.\n- From the root of the project, package the ORB content by running:\n\n```bash\ncircleci orb pack src \u003e orb.yml\n```\n\n- Validate the syntax of the generated file:\n\n```bash\ncircleci orb validate orb.yml\n```\n\n### Publish a development version/release candidate of the ORB\n\n```bash\ncircleci orb publish orb.yml tiendanube/eks@dev:first\n```\n\n### Release an official productive version\nAsk the Productivity-Engineer team to perform the official release using:\n\n```bash\ncircleci orb publish promote tiendanube/eks@dev:first patch --token 'value from orbs-token context'\n```\n\n**Note:** The version parameter can be one of:\n- `patch` - for bug fixes and minor changes (1.0.0 → 1.0.1)\n- `minor` - for new features (1.0.0 → 1.1.0) \n- `major` - for breaking changes (1.0.0 → 2.0.0)\n\nYou can check the published version here: https://app.circleci.com/settings/organization/github/TiendaNube/orbs\n\n### View in the orb registry\nSee the [eks-orb in the registry](https://circleci.com/orbs/registry/orb/tiendanube/eks)\nfor more the full details of jobs, commands, and executors available in this ORB.\nOr check via CircleCI CLI using:\n```bash\ncircleci orb info tiendanube/eks@1.8.0\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiendanube%2Feks-orb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftiendanube%2Feks-orb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiendanube%2Feks-orb/lists"}