Atharva Kulkarniatharvasblog.hashnode.dev·Aug 2, 2024Kubernetes DeploymentK8s Pods Suppose you have a Kubernetes cluster set up on your machine , lets assume of nginx. You create a Pod using YAML and it looks like this : apiVersion: v1 kind: Pod metadata: name: nginx spec: containers: - name: nginx image: nginx:1...Discuss·72 readsKubernetes
ANSAR SHAIKansarshaik965.hashnode.dev·Feb 1, 2024Title: Day 36 Task: Managing Persistent Volumes in Your Deployment 💥Introduction Welcome to Day 36 of the 90DaysOfDevOps challenge! Today, we'll dive into the world of Kubernetes (K8s) and explore the management of Persistent Volumes (PV) within your deployment. Persistent Volumes play a crucial role in preserving da...Discuss·47 readsPersistentVolumes