Kubernet Learning- Sujit

– What is POD – in 10 lines with 1 YAML example A Kubernetes pod is a collection of one or more Linux containers, and is the smallest unit of a Kubernetes application. pod can be composed of multiple, tightly coupled containers or just a single container. Within the kubernets system, containers in the same pod will share the same compute resources. Kubernetes does not run containers directly, instead running pods to ensure that each container within them shares the same resources and

Read more

Docker Learning – Sujit

Write a 1 post with following answers.– What is Docker – in 2 lines Docker is a tool which is used to create, deploy, and run applications by using containers. – What is Container – in 3 lines Container can be used to deploy a particular application or environment. containers package all the code, libraries, and dependencies together and multiple containers can run in the same host, so that we can use that host’s resources more efficiently.– Top 10 commands with

Read more