We have a setup of multiple docker containers running python microservices. The problem is that a lot of libraries are redundant across the containers. Because of docker isolation, all the libraries are independently installed in each container which is increasing the docker image size. So, is there a way in which I can share the ..
Category : microservices
I have created 2 springboot applications [producer and consumer]. They are working as expected in JBOSS EAP where I define the activeMQ config in standalone.xml. But when I deploy these war files in cloud, how do I setup activeMQ so that the message sent by producer to the Q is processed by the consumer microservice. ..
My understanding is that both .NET Core and .NET Framework supports micro-services architecture and containers (although .NET Core docker images are light-weight and offers better performance over traditional framework images). Then why is .NET core marketed as a perfect partner for cloud-native applications and why not .NET framework? What am i missing here? Source: Docker ..
We have an established SQL Server running on Windows and access to it is secured with Integrated Security. We want to create a new .Net 5 Web API Service that will run within a Container on Linux. This service will need to connect to this SQL Server using Integrated Security, but it’s not clear how ..
Currently all my microservices are deployed in single vm.I am planning to dockerize and distribute this in multiple hosts using kubernetes. But have few queries. 1)Currently I have apache proxy infront which terminates the ssl,use mod_shib to redirect to idp etc. But in kubernetes I know that we can use ingress.If i use nginx ingress ..
I have a docker compose file as follows: version: ‘3’ services: api-gateway: image: "saas:0.0.1" command: "yarn api-gateway" ports: ["3000:3000"] labels: – "traefik.enable=true" users: image: "saas:0.0.1" command: "yarn users" ports: ["6000"] traefik: image: "traefik:v2.4" ports: – "80:80" – "8080:8080" labels: – "traefik.enable=true" command: – "–api.dashboard=true" – "–api.insecure=true" – "–providers.docker=true" – "–providers.docker.exposedbydefault=false" – "–entrypoints.web.address=:80" volumes: – /var/run/docker.sock:/var/run/docker.sock ..
Need to know whether each microservice container needs its specific SQL Server container or only one SQL Server container for all the microservices? Source: Docker..
All the deployments are running, all the pods are healthy. ingress-nginx is running. when I run kubectl get ing: NAME CLASS HOSTS ADDRESS PORTS AGE ingress-srv <none> myapp.com 192.168.49.2 80 13m I set the hosts file for ingress. this is the ingress-srv.yml apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: ingress-srv annotations: kubernetes.io/ingress.class: "nginx" nginx.ingress.kubernetes.io/use-regex: "true" spec: ..
All the deployments are running, all the pods are healthy. ingress-nginx is running. when I run kubectl get ing: NAME CLASS HOSTS ADDRESS PORTS AGE ingress-srv <none> myapp.com 192.168.49.2 80 13m I set the hosts file for ingress. this is the ingress-srv.yml apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: ingress-srv annotations: kubernetes.io/ingress.class: "nginx" nginx.ingress.kubernetes.io/use-regex: "true" spec: ..
I am working on moleculer.js. In development I am running the server with "dev": "ts-node ./node_modules/.bin/moleculer-runner –hot –repl –config moleculer.config.ts services///*.service.ts –env" that is running fine. – But when it comes to deployment I simply want to create a docker image with this "start": "moleculer-runner", command but the Error I am facing is can’t find ..