I tried to deploy docker image to bluemix with kubernetes. I found these steps: https://github.com/IBM-Bluemix/bluechatter
Everything looks good, after some problems I successfully did all steps.
I tried to send GET in browser on all IPs, but response didn't come:
How access web service by browser ?
Answer by Nathan_F (556) | Oct 18, 2017 at 08:54 AM
Your app in that example is exposed as type NodePort. To access that, you need to go to the public ip of the worker node (as listed in the bx cs workers
command, the 184...
address), at the NodePort listed when you did the describe of the service. In this case, that would be port 30089.
I tested a curl against those two combined, and it gave me back results that I would expect from your example app.
Answer by Twana Daniel (1) | Oct 24, 2017 at 10:55 AM
Hi Karel,
I have updated the repo with more updated steps to follow: https://github.com/IBM-Bluemix/bluechatter If you follow the new steps then you should have the app running and the app should be running on port: 30089 (Example: http://worker-ip-address:portnumber where in my case it was http://173.193.85.219:30089 ).
Now, the reason it didn't work for you is that you may have missed the step of modifying the https://github.com/IBM-Bluemix/bluechatter/blob/master/kubernetes.yml source file with adding your namespace.
I suggest you review the updated steps added to the repo today and let us know if you had any other issues. You can always open an issue directly under the repo, and I will be sure to respond.