I have an application which consists of a backend (spring boot) and a search engine (elasticsearch). After I deployed it into OCP, Initially I tested the connection between the two using the command “curl” to elasticsearch service (https://service-name.namespace.svc.cluster.local:9200) from backend pod and it worked. Here’s the picture: However, when I try to access elasticsearch from within the deployed backend application,
Tag: openshift
Multi MQTT clients subscribed to the same topic
I have actually a spring boot application with a MQTT client into it that is subscribed to topic. I encounter a problem when i put 2 instances of my application ( 2 containers/pods ) because it creates 2 connections to the publisher ! The problem is that I record things in a database for each message, so I receive the
Connection refused when trying to connect to ActiveMQ Artemis deployed on Openshift
We have an Openshift project ( project1 ) in which we setup an AMQ Artemis broker using the image : amq- amq-broker-7-tech-preview/amq-broker-71-openshif . Being the basic image we don’t have any configuration such as SSL or TLS. In order to do the setup we used as example : https://github.com/jboss-container-images/jboss-amq-7-broker-openshift-image/blob/amq71-dev/templates/amq-broker-71-basic.yaml After the deployment of the image on Openshift we have the
Openshift pod not discoverable, timed out
I have three microservices I am deploying in openshift. Service A, B, C. A is a nodejs app, B is a java app and C again a java app. A nd B is exposed to outside world using routers. Both A and B uses …