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