play-with-docker/play-with-kubernetes.github.io

SDK Issue with PWK?

Closed this issue · 2 comments

Not sure why the link in the section

Accessing the web UI

does not work. App is launched from term1 but should be running on term2. Neither works for the link. It pulls up the page, but nothing shows up. Perhaps something with the app but wanted to make sure there's no issues with the SDK or infra at this point.

I believe I found the issue mano. Try with the following command instead of kubectl expose

kubectl create service deploy/webui --type=NodePort --tcp=8080:8080 --node-port=30001

Port needs to be from 30000 to 32767 as that's a k8s default restriction. Also remember to change the port in the link to point to the port that you've selected

Fixed by 1521bf2