diff --git a/jupyter/base/values/values.yaml b/jupyter/base/values/values.yaml index 07ffa7b..2100933 100644 --- a/jupyter/base/values/values.yaml +++ b/jupyter/base/values/values.yaml @@ -46,8 +46,9 @@ hub: ) http_server = HTTPServer(app) - api_host = os.environ['PROXY_API_SERVICE_HOST'] - api_port = os.environ['PROXY_API_SERVICE_PORT'] + api_host = '10.152.183.139' + api_port = '8001' + print(os.environ) http_server.listen(api_port, api_host) IOLoop.current().start()