minikube

Writing Code in Dim Office

How to create Ingress rules in Kubernetes using Minikube

Reading Time: 4 minutes In this blog, we will learn about Ingress and how to create ingress rules, So Stay Tuned! PREREQUISITES Minikube Cluster kubectl Installed WHAT IS INGRESS? Ingress is an API object that allows the external traffic to the Kubernetes cluster based on the routing mechanism. It provides routing rules to manage external users’ access in a Kubernetes cluster via HTTP/HTTPS. WHY DO WE USE INGRESS? An Continue Reading

How to set up a 2 node Elasticsearch cluster on Kubernetes.

Reading Time: 6 minutes In this blog, we will learn to set up Elasticsearch on the minikube cluster but before that let’s look at elasticsearch. Elasticsearch is a distributed, scalable, real-time search engine that supports full-text and structured searches, and analytics. It’s most typically used to index and search vast amounts of log data, but it can also be used to explore a variety of documents. Use Cases of Continue Reading

How To Install Kubernetes On Ubuntu 20.04 – Kubeadm And Minikube

Reading Time: 2 minutes In this article, we will see how to install Kubernetes on ubuntu 20.04. Over the past few years, containerization has provided a lot of flexibility to the developers. One of the most commonly used applications for containerization is Docker. Container provide the developer a virtual environment and isolation for our applications on the host system. However, there were a few problems with it. Running small Continue Reading

A Beginner’s Guide to Deploying a Lagom Microservice on Kubernetes

Reading Time: 4 minutes Both Lagom and Kubernetes are gaining popularity quite fast. Lagom is an open source framework for building reactive microservice systems in Java/Scala. And, Kubernetes (or K8s in short) is an open-source system for automating deployment, scaling, and management of containerized applications. Together they make an excellent stack for developing Reactive microservices of production grade. We have already seen a lot of blogs on Lagom on this Continue Reading