Rob Jahn
1 min readMay 1, 2019

--

After researching a bit, MAC is problematic with Docker and networking.

So I setup an ubuntu host and set it up with nginx and configured it with reverse proxy to localhost:8002 and ran kubectl proxy.

Here is /etc/nginx/conf.d/default.conf file I setup. Used 8002 as to not conflict with 8001. Plus needed to open a FW ingress rule.

server {

listen 8002;

listen [::]:8002;

server_name example.com www.example.com;

location / {

proxy_pass http://localhost:8001;

}

}

on my mac, I ran this. docker run -d — name realopinsight — publish 8082:4583 rchakode/realopinsight

I could then access the realopinsight web UI on http://localhost:8082

I then configured the kubernetes connection to my cluseter using http://<remote vm public IP>:8002/

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Rob Jahn
Rob Jahn

Written by Rob Jahn

Tech Partner Solutions Advocate at Dynatrace software

No responses yet

Write a response