Summary
Keywords
Full Transcript
Welcome to the channel! đ đ Documentation & Resources Kubernetes Resource Limit and Resource Request: GitHub Link - https://github.com/simplybyte1266/documentation/blob/main/kubernetes/resource-limit-and-request/guide.md â¶ïž Kubernetes from Scratch Playlist Watch the full playlist for more tutorials and hands-on examples. https://www.youtube.com/playlist?list=PL1yVd92q9OP6305trQ-7q0fyI_sRM9tZa đ Connect with Me Instagram: @simply_byte [https://www.instagram.com/simply_byte] LinkedIn: Simply Byte [https://www.linkedin.com/in/simplybyte] In this video, we will understand Kubernetes Resource Requests and Resource Limits with a real-world production scenario explained in Tamil. đč Many times in Kubernetes, applications suddenly become slow even though they were working fine earlier. đč This video explains why that happens and how Resource Requests & Limits solve this problem. đ Scenario Explained in This Video đ We have: One Spring Boot Java application One Python application Both deployed in the same Kubernetes cluster Initially, everything works fine. Suddenly, the Python application becomes very slow. â Why? Java application starts consuming more CPU & Memory Possible memory leak Python pod doesnât get enough resources Kubernetes scheduler still schedules new pods on the same node đ€Ż đ Solution: Resource Requests & Resource Limits â Resource Requests Minimum CPU & Memory required for a Pod Scheduler checks availability before scheduling Prevents Pods from being scheduled on overloaded nodes â Resource Limits Maximum CPU & Memory a Pod can use If memory exceeds â Pod gets Killed & Restarted Protects other Pods from disturbance đ Why This Is Important? â Prevents one Pod from affecting others â Avoids unexpected slowdowns â Mandatory for production-grade Kubernetes applications â Very important for DevOps & Kubernetes interviews đ Topics Covered Kubernetes Resource Requests Kubernetes Resource Limits CPU & Memory Management Scheduler Behavior Real-time Production Issue Best Practices
