It is a known issue since last week.
Please use below workaround.
- $ kubectl edit services tao-toolkit-api-service
(1 line added, and 1 line changed):
ports:
-name: api
nodePort: 31951
port: 8000
protocol: TCP
targetPort: 8000
…
type: NodePort
As seen as below,

-
Then double check with $ kubectl get services
-
Please note that, login API will still return {} an empty dict. That is expected.
In the notebook, instead of calling the login API, you can just do :
import uuid
user_id = str(uuid.uuid4())
token = “whatever”
Also change the port of the host_url
Reference for this step.
