Unable to add JupyterHub helm repository

I am running into this issue today, despite that I am able to add other helm repositories and get an update, I cannot add jupyterhub:

sudo helm repo add jupyterhub https://hub.jupyter.org/helm-chart/

Error: looks like "https://hub.jupyter.org/helm-chart/" is not a valid chart repository or cannot be reached: Get "https://hub.jupyter.org/helm-chart/index.yaml": dial tcp 172.64.80.1:443: connect: connection timed out

I get the same timeout issue with

sudo helm repo add jupyterhub https://jupyterhub.github.io/helm-chart

My helm version is version.BuildInfo{Version:"v3.7.1", GitCommit:"1d11fcb5d3f3bf00dbe6fe31b8412839a96b3dc4", GitTreeState:"clean", GoVersion:"go1.16.9"}

Any ideas why am I running into this particularly for JupyterHub?

Thanks!

It looks fine to me:

$ podman run -it --rm alpine

/ # apk add helm
fetch https://dl-cdn.alpinelinux.org/alpine/v3.18/main/aarch64/APKINDEX.tar.gz
fetch https://dl-cdn.alpinelinux.org/alpine/v3.18/community/aarch64/APKINDEX.tar.gz
(1/1) Installing helm (3.11.3-r0)
Executing busybox-1.36.0-r9.trigger
OK: 56 MiB in 16 packages

/ # helm version
version.BuildInfo{Version:"v3.11.3", GitCommit:"", GitTreeState:"", GoVersion:"go1.20.4"}

/ # helm repo add jupyterhub https://hub.jupyter.org/helm-chart/
"jupyterhub" has been added to your repositories

Maybe GitHub pages had a temporary outage. Is it still broken for you?

Ok, today I am able to get the repository update form Helm. Probably it was a temporary outage as you noted.

Thank you so much!