An open API service indexing awesome lists of open source software.

https://github.com/neilkuan/eks-fargate-lab


https://github.com/neilkuan/eks-fargate-lab

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# For EKS CDK Lab.

### Example 1: kubernetes service `Load balancer` type use NLB.
![](./images/nlb-svc.png)
[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.
![](./images/alb-ingress.png)
[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,
});
```