Posts

Showing posts from January, 2025

Understanding of Docker and Kubernetes - key technologies in deployment and management of the application

Image
     Even though this is the second time I have learned Docker and Kubernetes, this is the first time I applied them to a project (idraiske food delivery application, GitHub ). This totally changed my mind about building and deploying nature applications via Vercel. These technologies require more action than just finishing the application and clicking on "Deploy" on Vercel and don't care about further consequences. For example, assume you work for a big company, and you have to reach a high-quality web application since your application will not only handle HTTP requests but respond to them as fast as possible. Let's say, your application has 1000 of accessing at a time, which means about 1000 requests at the same time. Your application will collapse immediately since it can not handle too much at a time. So what is the solution? There comes the concept of dividing traffic from Kubernetes. This blog is to demonstrate my understanding and application of Kubernetes and...