May 8, 2020 • ☕️ 1 min read
I’ll take a note of Kubernetes because I didn’t know well about this great technology even though I love everything made by Google.
Yes, Kubernetes is originally made by an engineer of Google!
from Kerbenetes in 5 mins
Kubernetes is an open source container orchestration engine for automating deployment, scaling, and management of containerized applications, published by Google in 2014. Now it is hosted by the Cloud Native Computing Foundation (CNCF).
Container orchestration is a system that efficiently manage and scale the containerized applications. As your application gets bigger and bigger, you’ll need to upgrade the servers and add some new configurations, which also requires you to manage more containers for running the application. Then container orchestration will do complicated work instead of you.
Big picture, it just wraps up all the containers into “pods” which is more manageable and easier to change the configuration and deploy with CircleCI. Also, Kubernetes can balance the load from external networks on the dupulicated pods, and each pod automatically re-create the container when a container’s server is down.
Kubernetes Documentation Kerbenetes in 5 mins
Tomoya