OPOmkar Patilinblog.omkarpatil.dev路May 12, 2022 路 1 min readAzure AKS cluster from scratch using TerraformWhile working on creating training material on Azure IaC using Terraform, I created a small demo project to create an Azure AKS cluster from scratch and integrated it with Terraform Cloud. It came out quite nicely and therefore I thought I would shar...00
OPOmkar Patilinblog.omkarpatil.dev路Feb 8, 2022 路 10 min readFolds in TypeScriptFor past few days, folds were stuck in my head for some reason and needed some unfolding 馃槂. I did so and below is the summary of my understanding for the benefit of my future self. Why Consider the scenario where we have an array of numbers and we w...01L
OPOmkar Patilinblog.omkarpatil.dev路Sep 5, 2021 路 3 min readKubernetes services and Azure load balancersAzure Kubernetes Service (AKS) makes use of many core Azure resources to provide the necessary functionality. In this post, we'll take a look at how Kubernetes LoadBalancer services and Ingress are mapped to an Azure Load Balancer. Cluster creation ...00
OPOmkar Patilinblog.omkarpatil.dev路Aug 31, 2021 路 1 min readExploring linux underpinnings of containersSome time ago, I played around linux primitives that power containers and documented my learnings on Github. Hope it proves useful to someone trying to do the same. https://github.com/shikshan/containers00
OPOmkar Patilinblog.omkarpatil.dev路Aug 31, 2021 路 1 min readTwo node Kafka development cluster using dockerHere is a docker-compose yaml file to start a two Kafka cluster and kafdrop ui for a quick local development setup. # STARTING UP: docker-compose up --remove-orphans -d # STOP: docker-compose down # CHECK LOGS: docker-compose logs -f -t version: '3' ...00