Skip to content

Commit

Permalink
moving the ebs csi install until after the default nodeGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
rshade committed Jan 16, 2024
1 parent d606e5b commit 245ce6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nodejs/eks/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1766,13 +1766,13 @@ export function createCluster(
}
}

if (defaultNodeGroup){
if (defaultNodeGroup) {
// Add CSI Driver for Storage
const ebsCsiDriver = new aws.eks.Addon(
`${name}-aws-ebs-csi-driver`,
`${name}-aws-ebs-csi-driver`,
{
addonName: "aws-ebs-csi-driver",
clusterName: core.cluster.name
clusterName: core.cluster.name,
},
{
parent: self,
Expand Down

0 comments on commit 245ce6b

Please sign in to comment.