Storage Volumes in Kubernetes

Introduction In previous post, we learn the basics of how storage works in kubernetes. We learned that for statefull application, we need to persist data beyond container or pod life and how kubneretes have volume plugin mechanism to help us using existing storage solutions for our applications. We then started with a very basic type … Read more

Storage in Kubernetes

Introduction Storage is very important in every statefull application. In a typical on-premise setup, we usually have some dedicated storage e.g. a network file server, disk arrays etc. These storages will have bunch of volumes. We then expose those volumes to our servers and server will use those volumes as local disks and our applications … Read more

Deploy a Web Application using AWS Elastic Kubernetes Service (EKS)

Introduction EKS is a managed kubernetes service and it helps us greatly by abstracting most of the infrastructural concerns regarding control plane, softwares etc. which make it easy for us to focus more on application deployment side. Earlier I have written a post which shows a simple way to deploy an application to local kubernetes … Read more