{"id":50886048,"url":"https://github.com/hops-ops/aws-eks-cluster","last_synced_at":"2026-06-15T17:02:22.106Z","repository":{"id":363867766,"uuid":"1265309020","full_name":"hops-ops/aws-eks-cluster","owner":"hops-ops","description":"Crossplane configuration for standard AWS EKS clusters with Fargate bootstrap and Karpenter","archived":false,"fork":false,"pushed_at":"2026-06-10T18:20:52.000Z","size":38,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-10T19:05:15.905Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go Template","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-06-10T16:51:37.000Z","updated_at":"2026-06-10T18:21:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hops-ops/aws-eks-cluster","commit_stats":null,"previous_names":["hops-ops/aws-eks-cluster"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/hops-ops/aws-eks-cluster","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-eks-cluster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-eks-cluster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-eks-cluster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-eks-cluster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hops-ops","download_url":"https://codeload.github.com/hops-ops/aws-eks-cluster/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-eks-cluster/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.180Z","updated_at":"2026-06-15T17:02:22.084Z","avatar_url":"https://github.com/hops-ops.png","language":"Go Template","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aws-eks-cluster\n\n`EKSCluster` creates a standard Amazon EKS cluster for Hops workloads. It uses\nFargate only as bootstrap capacity for Karpenter and CoreDNS, then installs\nKarpenter to provision EC2 nodes through `EC2NodeClass` and `NodePool` objects.\n\n## What It Creates\n\n- EKS cluster with API authentication mode.\n- IAM roles for the control plane, Karpenter nodes, and Fargate pod execution.\n- Optional KMS key for Kubernetes secrets encryption.\n- IAM OIDC provider plus child `IRSA` XRs for Karpenter and the EBS CSI add-on.\n- Fargate profile for the Karpenter namespace and CoreDNS pods.\n- Core EKS add-ons: VPC CNI, CoreDNS, kube-proxy, EKS Pod Identity Agent, and EBS CSI.\n- SQS/EventBridge interruption queue wiring for Karpenter.\n- Karpenter Helm release, default `EC2NodeClass`, optional storage-NVMe `EC2NodeClass`, and default `NodePool`.\n- Child Kubernetes and Helm `ProviderConfig` objects backed by the cluster kubeconfig.\n- Default `hops-default` `StorageClass` using the EBS CSI provisioner.\n\n## Minimal\n\n```yaml\napiVersion: aws.hops.ops.com.ai/v1alpha1\nkind: EKSCluster\nmetadata:\n  name: minimal\n  namespace: default\nspec:\n  clusterName: minimal\n  region: us-east-2\n  accountId: \"123456789012\"\n  version: \"1.35\"\n  subnetIds:\n  - subnet-0000000000000000a\n  - subnet-0000000000000000b\n```\n\n## Standard\n\n```yaml\napiVersion: aws.hops.ops.com.ai/v1alpha1\nkind: EKSCluster\nmetadata:\n  name: standard\n  namespace: default\nspec:\n  clusterName: standard\n  region: us-east-2\n  accountId: \"123456789012\"\n  version: \"1.35\"\n  subnetIds:\n  - subnet-0000000000000000a\n  - subnet-0000000000000000b\n  adminRoleArn: arn:aws:iam::123456789012:role/Admin\n  tags:\n    Environment: test\n  karpenter:\n    nodeClasses:\n      storageNvme:\n        enabled: true\n        instanceStorePolicy: RAID0\n        amiSelectorTerms:\n        - alias: al2023@latest\n    nodePools:\n      default:\n        limits:\n          cpu: \"4\"\n```\n\n## Import\n\nUse `managementPolicies` without `Delete` when adopting existing cluster\nresources.\n\n```yaml\napiVersion: aws.hops.ops.com.ai/v1alpha1\nkind: EKSCluster\nmetadata:\n  name: imported\n  namespace: default\nspec:\n  managementPolicies: [Create, Observe, Update, LateInitialize]\n  externalName: existing-standard-cluster\n  clusterName: existing-standard-cluster\n  region: us-east-2\n  accountId: \"123456789012\"\n  version: \"1.35\"\n  subnetIds:\n  - subnet-0000000000000000a\n  - subnet-0000000000000000b\n  iam:\n    controlPlaneRole:\n      externalName: existing-standard-cluster-controlplane\n    nodeRole:\n      externalName: existing-standard-cluster-node\n  fargate:\n    podExecutionRole:\n      externalName: existing-standard-cluster-fargate\n  kms:\n    externalName: 12345678-1234-1234-1234-123456789012\n  oidc:\n    externalName: arn:aws:iam::123456789012:oidc-provider/oidc.eks.us-east-2.amazonaws.com/id/EXAMPLE\n```\n\n## Defaults\n\n| Field | Default |\n| --- | --- |\n| `privateAccess` | `true` |\n| `publicAccess` | `false` |\n| `encryptionEnabled` | `true` |\n| `oidc.enabled` | `true` |\n| `fargate.enabled` | `true` |\n| `fargate.profileName` | `bootstrap` |\n| `karpenter.enabled` | `true` |\n| `karpenter.namespace` | `karpenter` |\n| `karpenter.chartVersion` | `1.12.1` |\n| `karpenter.interruptionQueue.enabled` | `true` |\n| `karpenter.nodeClasses.default.name` | `hops-default` |\n| `karpenter.nodePools.default.name` | `hops-apps` |\n| `addons.*.enabled` | `true` |\n| `addons.coredns.configurationValues` | `{\"computeType\":\"Fargate\"}` |\n| `storage.defaultClass.enabled` | `true` |\n\nDefault Karpenter requirements use spot capacity, Linux, and the\n`karpenter.k8s.aws/instance-category` and\n`karpenter.k8s.aws/instance-generation` labels.\n\n## Test\n\n```sh\nmake render:all\nmake validate:all\nmake test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Faws-eks-cluster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhops-ops%2Faws-eks-cluster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Faws-eks-cluster/lists"}