Connecting to LocalStack OpenSearch from localhost Docker container

As I mentioned earlier, I use LocalStack to emulate AWS services during development phase. It works more or less well. Recently I faced a problem with LocalStack OpenSearch instance. I created one OpenSearch cluster using LocalStack. My LocalStack is installed via docker-compose file & it runs in a container. Now I have developed a Java … Read more

How to Mock Java Enum or Final Class Without PowerMock

First things first. Here we won’t be discussing mocking of Java enum or final class using PowerMock framework. That is already discussed in tons of places & one of the main reason why people tend to use PowerMock.Here we will be discussing mocking of enum or final classes with Mockito framework only. The feature has … Read more

How to Resolve Kubernetes Autoscaler Error “Unable to read all metrics”

I was exploring GKE or Google Kubernetes Engine recently. Google Cloud has pretty good UI interface where you can deploy workloads & services without having to define your own YAML file. You can completely skip kubectl command line if you are starting as a Kubernetes beginner. You can just follow the UI steps. UI is … Read more

GKE Autopilot Cluster Creation Failed With 400 Response “Autopilot clusters must be regional clusters.”

I was playing around with Google Kubernetes Engine few days back. I wanted to try out GKE autopilot cluster setup. Autopilot mode is basically a fully managed kind of a setup. With standard mode, we get fully managed control plane. But we need to plan for the capacity of data plane nodes & create, manage … Read more