This message was deleted.
# general
s
This message was deleted.
g
actually switching from Chart to Release does seem to fix the issue. yay!
😕 1
d
The workaround for the Chart resource would be to use a transformation to set
ignoreChange
on the secret/certificate's data. See here for an example of transformations: https://www.pulumi.com/registry/packages/kubernetes/api-docs/helm/v3/chart/#chart-with-transformations
s
try using it the aws.eks.addon
Copy code
export const csiAddon = new aws.eks.Addon(
  'aws-ebs-csi-driver-addon',
  {
    clusterName: eksCluster.name,
    addonName: 'aws-ebs-csi-driver',
    resolveConflictsOnUpdate: 'OVERWRITE',
    // addonVersion: 'v1.24.1-eksbuild.1',
  },
  { dependsOn: [eksCluster, nodeGroup] },
)