Skip to content

Commit

Permalink
wrong cluster...
Browse files Browse the repository at this point in the history
  • Loading branch information
corymhall committed Sep 17, 2024
1 parent eca0e92 commit fc2f0b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/cluster/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ const cluster2 = new eks.Cluster(`${projectName}-2`, {
const cluster3 = new eks.Cluster(`${projectName}-3`, {
vpcId: vpc.vpcId,
publicSubnetIds: vpc.publicSubnetIds,
corednsAddonOptions: {
enabled: false,
},
nodeGroupOptions: {
amiId: "ami-0384725f0d30527c7",
desiredCapacity: 1,
Expand All @@ -56,9 +59,6 @@ const cluster4 = new eks.Cluster(`${projectName}-4`, {
publicSubnetIds: vpc.publicSubnetIds,
nodeAmiId: "ami-0350263ff18287b83",
instanceType: "t4g.small",
corednsAddonOptions: {
enabled: false,
},
})

//////////////////////////
Expand Down

0 comments on commit fc2f0b4

Please sign in to comment.