Deploy your first Pod in Kubernetes

In the previous post we've seen Introduction to K8s Pods, In this post we will be writing manifest file to deploy K8s Pod. Kubernetes manifestsĀ are used to create, modify and deleteĀ KubernetesĀ resources such as pods, deployments, services or ingresses. It is very common to defineĀ manifestsĀ in form of .yaml.

Introduction to Kubernetes Pods

Are you new to Kubernetes and baffling around Pods? Then you're at the right place, I will help you to understand everything required to get start with Kubernetes Pod. What is Kubernetes or K8s Pods? What is Multi Container Pod? Inter and Intra Pod Communication?

Introduction to Ansible Loops

In this post we will be seeing how to use Ansible Loops, Sometimes you want to repeat a task multiple times. In computer programming, this is called a loop. Common Ansible loops include changing ownership on several files and/or directories with the file module, creating multiple users with the user module, and repeating a polling step until a certain result is reached.