Category: Deployment, Software, Kubernetes, Docker, Infrastructure, Architecture, nginx, containerization, automation

Apart of which we already saw, Kubernetes offers tons of other which make it a largely used and an powerful container orchestration tool.

Kubernetes gives Pods their own IP addresses and a single DNS name for a set of Pods, and can load-balance across them.

ell we saw for the Self Healing and Fault tolerance for the Kubernetes but what about Replication part of kubernetes

As soon as we told our kubernetes to launch 3 replicas of the pod which we just created, it’s replication controller instantly launches the 3 containers and those containers are the part of out desire which we presented to kubernetes.

As soon as we destroyed or deletes all the pods, as mentioned in our desires kubernetes instantly launches another set of pods so that our configuration as mentioned in our desire is met always.

Related Articles