From 4f841f0cab5e544b04d3270cec58ca5151bbcb06 Mon Sep 17 00:00:00 2001 From: shankarsundaram Date: Sun, 7 Jul 2019 09:22:33 +0530 Subject: [PATCH] Update what-is-kubernetes.md (#15181) container needs to start i cant be the same container . so renamed from restart to start --- content/en/docs/concepts/overview/what-is-kubernetes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/overview/what-is-kubernetes.md b/content/en/docs/concepts/overview/what-is-kubernetes.md index 4eb3576a70..8beb3ba21a 100644 --- a/content/en/docs/concepts/overview/what-is-kubernetes.md +++ b/content/en/docs/concepts/overview/what-is-kubernetes.md @@ -50,7 +50,7 @@ Containers are becoming popular because they have many benefits. Some of the con ## Why do I need Kubernetes and what can it do -Containers are a good way to bundle and run your applications. In a production environment, you need to manage the containers that run the applications and ensure that there is no downtime. For example, if a container goes down, another container needs to restart. Wouldn't it be easier if this behavior was handled by a system? +Containers are a good way to bundle and run your applications. In a production environment, you need to manage the containers that run the applications and ensure that there is no downtime. For example, if a container goes down, another container needs to start. Wouldn't it be easier if this behavior was handled by a system? That's how Kubernetes comes to the rescue! Kubernetes provides you with a framework to run distributed systems resiliently. It takes care of your scaling requirements, failover, deployment patterns, and more. For example, Kubernetes can easily manage a canary deployment for your system.