deploy wso2esb in docker container with kubernetes

2/18/2016

can someone help with how to deploy wso2esb in docker container with kubernetes?

currently im running only one node/master at local machine with ubuntu server 14.04 LTS

if im running with this

sudo docker run --name esb isim/wso2esb

it instantly trigger the service inside the container

but if im running with this

kubectl run esb1 --image=isim/wso2esb

the container just run, without trigger the service inside the container

btw im using isim/wso2esb from docker hub

hope someone can help me..

-- BIlly Sutomo
containers
docker
kubernetes
linux
ubuntu

1 Answer

2/18/2016

From the comments above, it looks like you were connecting to the wrong IP address, which you discovered by running kubectl logs esb1.

In general, you can follow the Kubernetes Debugging FAQ when you see an issue like this to see if it is a common problem that has already been documented.

-- Robert Bailey
Source: StackOverflow