The AWS documentation uses the URL format "<github...
# general
f
The AWS documentation uses the URL format "github.com/kubernetes-sigs/aws-efs-csi-driver/deploy/kubernetes/overlays/stable/?ref=master" when telling you how to install their EFS CSI driver. Using that URL in a
k8s.yaml.ConfigFile
results in a "no such file or directory" error. Visiting that URL in the browser results in a 404. Does anyone have any idea what this URL format is and if/how it could work with Pulumi?
b
they appear to have switched to kustomize and not updated the documentation unfortunately, you'll need to generate the overlays using kustomize or use helm
f
Any idea if there is a Pulumi equivalent for their install command?
Copy code
helm install aws-efs-csi-driver <https://github.com/kubernetes-sigs/aws-efs-csi-driver/releases/download/v0.3.0/helm-chart.tgz>
b
which language?
f
ts
This feels a bit hacky 🙈
b
hmm is it in a helm repo somewhere? if it is, you can use
helm.v3.Chart
`FetchOpts`: https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/kubernetes/helm/v2/#FetchOpts-repo
f
I can't seem to find a repo with it 😢