Running google cloud datalab on GKE

8/31/2017

I deployed datalab to my GKE cluster:

kubectl run datalab --image gcr.io/cloud-datalab/datalab:latest --port 8081

Then I tried forwarding (kubectl port-forward) a local port to port 8081 on the datalab pod, but requests are not reaching the pod.

What am I my missing ? Is it due to IP address binding issue ?

-- Fábio Uechi
google-cloud-datalab
google-kubernetes-engine

1 Answer

9/1/2017

You likely need to try attaching to port 8080 instead of 8081, as that is the port the webserver inside the container runs against.

See also my answer here: https://github.com/googledatalab/datalab/issues/1633

-- Chris Meyers
Source: StackOverflow