{"id":15019966,"url":"https://github.com/hupe1980/cdkeks","last_synced_at":"2025-04-02T22:31:05.054Z","repository":{"id":57195497,"uuid":"373922735","full_name":"hupe1980/cdkeks","owner":"hupe1980","description":"Higher-level hybrid cdk|cdk8s construct to build an eks kubernetes platform with batteries included","archived":true,"fork":false,"pushed_at":"2021-06-30T19:21:08.000Z","size":615,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-18T23:47:53.761Z","etag":null,"topics":["aws","aws-load-balancer-controller","calico","cdk","cdk8s","eks","external-dns","fluent-bit","k8s","kubernetes"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"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/hupe1980.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}},"created_at":"2021-06-04T18:00:46.000Z","updated_at":"2024-10-30T06:15:20.000Z","dependencies_parsed_at":"2022-09-17T03:12:04.713Z","dependency_job_id":null,"html_url":"https://github.com/hupe1980/cdkeks","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hupe1980%2Fcdkeks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hupe1980%2Fcdkeks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hupe1980%2Fcdkeks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hupe1980%2Fcdkeks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hupe1980","download_url":"https://codeload.github.com/hupe1980/cdkeks/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246905077,"owners_count":20852806,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["aws","aws-load-balancer-controller","calico","cdk","cdk8s","eks","external-dns","fluent-bit","k8s","kubernetes"],"created_at":"2024-09-24T19:54:23.193Z","updated_at":"2025-04-02T22:31:04.711Z","avatar_url":"https://github.com/hupe1980.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cdkeks\nHigher-level hybrid cdk|cdk8s construct to build an eks kubernetes platform with batteries included:\n\n- Network policies with [aws-calico](https://github.com/aws/eks-charts/tree/master/stable/aws-calico)\n- DNS management with [external-dns](https://github.com/kubernetes-sigs/external-dns)\n- Forwarding logs to CloudWatch Logs or ElasticSearch with [fluent-bit](https://github.com/aws/aws-for-fluent-bit)\n- Ingress management with the [aws load balancer controller](https://github.com/kubernetes-sigs/aws-load-balancer-controller)\n\n:warning: This is experimental and subject to breaking changes.\n\n## Install\nTypeScript/JavaScript:\n\n```bash\nnpm install --save cdkeks\n```\n\nPython:\n\n```bash\npip install cdkeks\n```\n\n## Howto use\n\n### Install Addons\n```typescript\nconst platform = new Platform(this, 'Platform', {\n  cluster,\n  addons: [new AwsCalicoAddon(), new AwsLoadBalancerControllerAddon()/*,...*/],\n});\n```\nSee more [addons](https://github.com/hupe1980/cdkeks/tree/main/cdkeks/src/addons).\n\n### AlbIngress\n```typescript\nconst deployment = new Deployment(this, 'Deployment', {\n  platform,\n  containers: [\n    {\n      image: 'nginx',\n    },\n  ],\n});\n\nconst backend = IngressBackend.fromService(deployment.expose('Service', 80));\n\nconst ingress = new AlbIngress(this, 'Ingress', {\n  platform,\n  targetType: TargetType.IP,\n  internetFacing: true,\n});\n\ningress.connections.allowFromAnyIpv4(Port.tcp(80));\ningress.addRule('/', backend);\n```\n\n### LoadBalancer\n```typescript\nconst deployment = new Deployment(this, 'Deployment', {\n  platform,\n  containers: [\n    {\n      image: 'nginx',\n    },\n  ],\n});\n\ndeployment.expose('LoadBalancer', 80, {\n  serviceType: ServiceType.LOAD_BALANCER,\n});\n```\n\n## API Reference\n\nSee [API.md](https://github.com/hupe1980/cdkeks/tree/main/cdkeks/API.md).\n\n## Example\n\nSee more complete [examples](https://github.com/hupe1980/cdkeks/tree/main/examples).\n\n## License\n[MIT](https://github.com/hupe1980/cdkeks/tree/main/cdkeks/LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhupe1980%2Fcdkeks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhupe1980%2Fcdkeks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhupe1980%2Fcdkeks/lists"}