Hi,
I have a camunda process on spring boot, with other subprocesses embedded in it. The camunda process is exposed as REST service and can be accessed normally. However, when I put it in a Docker container and deploy on Kubernetes, then I try accessing the REST API url, either through curl or through the application, I get a connection refused error.
It’s a POST request and my URL is something like this:
http://x.y.z.101:12345/rest/process-definition/key/myModeleter/start, where x.y.z.101 is the Kubernetes master IP and 12345 is the port on which the pod is deployed.
Any help would be really appreciated, thanks in advance!