https://github.com/neilkuan/eks-fargate-lab
https://github.com/neilkuan/eks-fargate-lab
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/neilkuan/eks-fargate-lab
- Owner: neilkuan
- License: apache-2.0
- Created: 2021-12-23T06:11:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-29T00:04:17.000Z (3 months ago)
- Last Synced: 2025-03-29T01:19:47.937Z (3 months ago)
- Language: TypeScript
- Size: 4.07 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# For EKS CDK Lab.
### Example 1: kubernetes service `Load balancer` type use NLB.

[detail click here](https://github.com/neilkuan/eks-fargate-lab/blob/main/src/nlb-service-lab.ts)
To Use.
```ts
new NlbServiceLabConstruct(this, 'NlbServiceLab', {
eksFargateCluster: cluster,
});
```### Example 2: alb -> fargate.

[detail click here](https://github.com/neilkuan/eks-fargate-lab/blob/main/src/alb-ingress-lab.ts)
To Use.
```ts
new AlbIngressLabConstruct(this, 'AlbIngressLab', {
eksFargateCluster: cluster,
});
```