Cannot access Spring boot app from Docker host and port after deploying to Docker Containers. Solved!

I recently faced an issue where I deployed our spring boot application Docker environment. Everything worked our perfectly fine like app was getting started in docker env. as per logs. But when we tried to access the app endpoints from the docker host and port or the load balancer it was the container was unreachable. … Continue reading Cannot access Spring boot app from Docker host and port after deploying to Docker Containers. Solved!

Advertisement

Error: kie.container or kieModule bean – Null Pointer Exception? Solved!

I recently we faced an issue in my Drools Config class where we added config for kie container and kie modules. It was working fine in normal windows server environment but we migrated our app into docker environment we faced below error. When running our Java Spring Boot app (Fat Jar) on Docker Environment we … Continue reading Error: kie.container or kieModule bean – Null Pointer Exception? Solved!

Azure Series Part 9: Creating your first function app via Azure portal and ARM templates

Functions are hosted in an execution context called a function app. You define function apps to logically group and structure your functions and a compute resource in Azure. Function apps may use one of two types of service plans. The first service plan is the Consumption service plan. The plan that you choose when using the Azure … Continue reading Azure Series Part 9: Creating your first function app via Azure portal and ARM templates

Azure Series Part 8: Automating Metric and Activity based alerts and creating custom log alerts using KQL

Alerts proactively notify you when issues are found with your infrastructure or application using your monitoring data in Azure Monitor. They allow you to identify and address issues before the users of your system notice them. Severity levels Below are few of the target resource for whom we can create alerts in Azure: Virtual machines.Storage … Continue reading Azure Series Part 8: Automating Metric and Activity based alerts and creating custom log alerts using KQL

Azure Series Part 5: Using bootstrap script to install packages while provisioning the Linux Virtual Machines

Microsoft Azure provides a Custom Script Extension which is useful for post-deployment configuration, software installation, or any other configuration/management task.  Before we get started I shared in this below post how we can provision the Linux Virtual Machines in Azure. Azure Series Part 4: Provisioning and accessing the Linux Virtual Machines We will use the same … Continue reading Azure Series Part 5: Using bootstrap script to install packages while provisioning the Linux Virtual Machines