Kubernetes YAML Template

Exploring Kubernetes YAML Template to better understand and work with YAML manifests YAML ( YAML Ain’t Markup Language) is a human readable data serialisation language used to create configuration files with any programming language. Kubernetes is an open source container orchestration system that uses YAML configuration files also known as manifests used to deploy different resources in Kubernetes […]

Docker Compose: A hassle-free way to optimize multi-container deployments

To define and run multi-container Docker applications with the help of services define in the YAML file and start them with a single command and improve your productivity. An application can have multiple containers running different services. which could have both frontend and backend services. It may be annoying and time-consuming to manage containers manually […]

Update Multiple Lines in a YAML file with Kubectl

Update multiple lines in a YAML file with kubectl Whenever I need to update a YAML file, the first thing that comes to mind is to either use sed or awk or perl etc., But there’s an in-house kubectl patch option that simplifies the experience. Lab With Kubectl Patch As we triggered the lab through the LAB SETUP button, a terminal, and an IDE comes for […]