Kubernetes Logo

kubernetes: Version Control Mastery

Here's how I learned Kubernetes from scratch - from basic architecture to deploying containers, managing clusters and scaling applications.

πŸ‘¨πŸ»β€πŸŽ“What I’ve Learned in kubernetes

Kubernetes Intro Icon
Kubernetes Basics

Explored Kubernetes as a container orchestration tool. Understood how it automates deployment, scaling, and management of containerized apps.

Cluster Architecture Icon
Cluster Architecture

Learned about Master and Worker nodes, and key components like kube-apiserver, scheduler, kubelet, and etcd within a cluster.

Pods and Deployments Icon
Pods & Deployments

Understood how Pods group containers, and how Deployments manage the desired state and rolling updates in Kubernetes.

Services Icon
Services & Networking

Learned about ClusterIP, NodePort, and LoadBalancer services for exposing Pods and enabling stable communication.

YAML Icon
YAML & kubectl

Practiced writing resource manifests in YAML and running commands using kubectl to create, describe, and delete resources.

Helm Icon
Helm Basics

Got introduced to Helm as a Kubernetes package manager. Explored Helm charts for templating and reusable app deployment.

ReplicaSets & Scaling Icon
ReplicaSets & Scaling

Learned how ReplicaSets ensure the desired number of pod replicas are running and how Kubernetes handles scaling workloads up or down.

Monitoring and Logs Icon
Monitoring & Logs

Explored methods to monitor clusters using tools like kubectl logs and describe commands for troubleshooting live applications.

πŸ“ My Handwritten Notes

Here are my personal notes on kubernetes. I use them to quickly revise commands and concepts.

πŸ“– View KUBERNETES Notes Flipbook

If you'd like a PDF version, feel free to contact me via the Contact section.

πŸš€ Projects with KUBERNETES

Kubernetes Deployment

Deployed a containerized Node.js app using Deployments, Services, and ConfigMaps in Kubernetes.

View K8s Project
Kubernetes + Helm Charts

Managed complex Kubernetes deployments using custom Helm charts.

View Helm Project
← Back to Home