Overview of Kubernetes with Architecture Explained!!

– What is Kubernetes? Kubernetes is a open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and automation. The name Kubernetes originates from Greek, meaning helmsman or pilot. Kubernetes was developed by google in go-lang and open-sourced the Kubernetes project in 2014. – Why Do we need Kubernetes? Containers are a good way to bundle and run applications. Kubernetes manages the containers that run the applications and ensure that there is no downtime. – Benefits of

Read more

Assignment

1. What is Docker and Container? Define in 15 points with example image. Docker is an open source platform tool for building, deploying, and managing containerized applications. Containers are an abstraction at the app layer that packages code and dependencies together. Multiple containers can run on the same machine and share the OS kernel with other containers, each running as isolated processes in user space. 2. What is the difference between docker pause and unpause? The docker kill, docker stop

Read more