astonishing-dress-81433
01/29/2023, 8:47 AMk8s.helm.v3.Chart
resource for a fairly simple application:
const chart = new k8s.helm.v3.Chart("daskhub", {
version: "2023.1.0",
chart: "daskhub",
namespace: "dev",
fetchOpts: {
repo: "<https://helm.dask.org/>",
},
}, { providers: { kubernetes: cluster.provider }});
running pulumi up
fails with:
Error: invocation of kubernetes:helm:template returned an error: failed to generate YAML for specified Helm chart: failed to pull chart: Get "<https://helm.dask.org/daskhub-2023.1.0.tgz>": dial tcp [2606:4700:3033::6815:2751]:443: connect: no route to host
The interesting thing is that the url above seems to be perfectly valid. Does anyone has thoughts on what is going on here? Thanks!steep-toddler-94095
01/29/2023, 9:23 PMpulumi up
from? Is it potentially blocking egress to that endpoint?astonishing-dress-81433
01/29/2023, 11:40 PMpulumi up
from my home network. curl -O <https://helm.dask.org/daskhub-2023.1.0.tgz>
works fine as does helm install my-daskhub dask/daskhub --version 2023.1.0
.steep-toddler-94095
01/29/2023, 11:42 PMastonishing-dress-81433
01/30/2023, 12:33 AM