Reputation: 1161
I am trying to install the jupyterhub on the gke autopilot cluster via helm using tutorial. It gets installed but when I start the jupyterhub server from the UI(svc), getting the spawn failed error in the logs it says "block-cloud-metadata not allowed;".
is it possible to jupyterhub on gke autopilot via helm?
Upvotes: 1
Views: 245
Reputation: 1161
Got the answer in discourse.jupyter.org. I need to disable the block-cloud-metadata. It is not allowed in Autopilot.
error:
block-cloud-metadata is privileged; not allowed in Autopilot
solution:
singleuser:
cloudMetadata:
blockWithIptables: false
Upvotes: 2