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 Jun 15, 2023
1 parent 6690a2e commit d10ce57
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 @@ -1772,13 +1772,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 d10ce57

Please sign in to comment.