Skip to content
Advertisement

deploy wso2esb in docker container with kubernetes

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..

Advertisement

Answer

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.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement