I think this one needs a refresh: <https://www.pul...
# aws
d
Trying to debug the csi driver but this page says it's deprecated: https://kubernetes-csi.github.io/docs/cluster-driver-registrar.html
Step 3 could be replaced with this I think:
Copy code
const csiDriverChart = new k8s.helm.v2.Chart(
  'aws-efs-csi-driver',
  {
    chart: 'aws-efs-csi-driver',
    version: '0.1.0',
    namespace: 'kube-system',
    fetchOpts: {
      repo: '<https://kubernetes-sigs.github.io/aws-efs-csi-driver/>',
    },
  },
  {
    provider: cluster.provider,
  },
);
b
I've filed an issue to mark the post out of date, thanks for letting us know
🙏 1