Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
feat: loadbalancer cleanup on delete & improved structure (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: Anna Mager <[email protected]>

---------

Co-authored-by: Anna Mager <[email protected]>
  • Loading branch information
stefreak and twelvemo authored Apr 21, 2023
1 parent 1eea3b1 commit 454c8a3
Show file tree
Hide file tree
Showing 14 changed files with 1,674 additions and 1,159 deletions.
6 changes: 0 additions & 6 deletions bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,11 @@ This only needs to be executed once.
- `dev-cluster/`: Files related to the garden-dev-cluster CDK stack
- `x.x.x/`: semver release directory
- `<hash>.{json,zip}`: cdk asset created by synth
- `eks-blueprint/`: Files related to the eks-blueprint CDK stack
- `x.x.x/`: semver release directory
- `<hash>.{json,zip}`: cdk asset created by synth

- `garden-cfn-public-releases/`
- `dev-cluster/`: Files related to the garden-dev-cluster CDK stack
- `x.x.x/`: semver release directory
- `garden-dev-cluster.template.yaml`: CloudFormation stack synthesized from CDK code
- `eks-blueprint/`: Files related to the eks-blueprint CDK stack
- `x.x.x/`: semver release directory
- `eks-blueprint.template.yaml`: CloudFormation stack synthesized from CDK code

# How to create or update cfn stacks

Expand Down
25 changes: 23 additions & 2 deletions cdk.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
{
"app": "ts-node -P tsconfig.json --prefer-ts-exts src"
}
"app": "ts-node -P tsconfig.json --prefer-ts-exts src",
"watch": {
"include": [
"src/**"
]
},
"context": {
"GardenDevClusterStackID": "garden-dev-cluster",

"EKSClusterName": "garden-dev-cluster",
"EKSNodeGroupMinSize": 1,
"EKSNodeGroupMaxSize": 10,

"ECRRepositories": "api,result,vote,worker",
"ECRPrefix": "garden-dev-cluster",

"IAMEKSFullAccessRole": "",
"IAMEKSFullAccessPrincipals": "",

"IngressSubdomain": "",
"IngressRoute53HostedZoneId": ""
}
}
Loading

0 comments on commit 454c8a3

Please sign in to comment.