Skip to content

Commit

Permalink
fix: bool vs string to keep node SA from being created
Browse files Browse the repository at this point in the history
  • Loading branch information
josmo committed Feb 7, 2024
1 parent 6e997f5 commit f6810d2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gitops/base-install/ebs-csi/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ spec:
repoURL: https://kubernetes-sigs.github.io/aws-ebs-csi-driver
targetRevision: 2.27.0
helm:
# TODO: figure out correct roles for controller vs node
releaseName: aws-ebs-csi-driver
valuesObject:
controller:
serviceAccount:
create: "true"
create: true
name: ebs-csi-driver
annotations:
eks.amazonaws.com/role-arn: EBS_CSI_ROLE_ARN
Expand All @@ -34,7 +35,7 @@ spec:
memory: "128Mi"
node:
serviceAccount:
create: "false"
create: false
name: "ebs-csi-driver"
resources:
requests:
Expand Down

0 comments on commit f6810d2

Please sign in to comment.