From 0e1b764169ca308dc6d0551441b031fa644d80ee Mon Sep 17 00:00:00 2001 From: Sandeep R N <42804812+Sandeep-RN@users.noreply.github.com> Date: Fri, 10 Feb 2023 15:18:12 +0530 Subject: [PATCH] Update README.md Adding Content to "Step-01: Why Kubernetes?" --- 01-Kubernetes-Architecture/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/01-Kubernetes-Architecture/README.md b/01-Kubernetes-Architecture/README.md index d502e5c..11a3c17 100644 --- a/01-Kubernetes-Architecture/README.md +++ b/01-Kubernetes-Architecture/README.md @@ -1,6 +1,31 @@ # Kubernetes Architecture ## Step-01: Why Kubernetes? +
+Scalability
+ Kubernetes makes it easy to scale applications up or down by adding or removing containers as needed. +
+
+Portability
+ Kubernetes provides a platform-agnostic way of deploying and managing applications, making it easy to move applications between different environments, such as on-premise, cloud, or hybrid environments. +
+
+Automation
+ Kubernetes automates many tasks associated with deploying, scaling, and managing applications, such as rolling updates, self-healing, and resource management. +
+
+Flexibility
+ Kubernetes supports a wide range of application types and architectures, making it a flexible choice for organizations of all sizes and industries. +
+
+Large Ecosystem
+ Kubernetes has a large and growing ecosystem of extensions, tools, and services, making it easier to integrate with other technologies and build complex, multi-tiered applications. +
+
+Community Support
+ Kubernetes has a large and active community of contributors, users, and organizations, making it easier to find support, information, and resources when needed. +
+Overall, Kubernetes provides a comprehensive solution for managing and deploying containerized applications at scale, making it a popular choice for organizations looking to modernize their application development and deployment processes. ## Step-02: Kubernetes Architecture