DEV Community

Cover image for Kubernetes YAML File simply explained for Beginners

Kubernetes YAML File simply explained for Beginners

TechWorld with Nana on February 12, 2020

YAML Configuration File is the main tool for creating and configuring components in Kubernetes cluster In this video I show the syntax a...
Collapse
 
alamba78 profile image
Amit Lamba

At 6:44 of the video, it's mentioned "And we tell the deployment...", this should actually say "And we tell the ReplicaSet..." This is because the ReplicaSet matches labels of app: nginx. The ReplicaSet tracks the pods, the Deployment tracks the ReplicaSet. For example, if we want to update the version of nginx, the Deployment will communicate to the ReplicaSet to update all nginx pods with a matching label for the update.

Collapse
 
techworld_with_nana profile image
TechWorld with Nana

Cool thank you!