From bf7fcfeaee8aa0a5847dae8b53d616f7b24cff63 Mon Sep 17 00:00:00 2001 From: Shubha Narayanan Date: Tue, 7 Oct 2025 11:40:48 +0530 Subject: [PATCH] Delete unused modules --- modules/kubernetes-about.adoc | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 modules/kubernetes-about.adoc diff --git a/modules/kubernetes-about.adoc b/modules/kubernetes-about.adoc deleted file mode 100644 index 1ed84826bd..0000000000 --- a/modules/kubernetes-about.adoc +++ /dev/null @@ -1,16 +0,0 @@ -// Module included in the following assemblies: -// -// * osd_architecture/osd-architecture.adoc - -:_mod-docs-content-type: CONCEPT -[id="kubernetes-about_{context}"] -= About Kubernetes - -Kubernetes is an open source container orchestration engine for automating deployment, scaling, and management of containerized applications. The general concept of Kubernetes is fairly simple: - -* Start with one or more worker nodes to run the container workloads. -* Manage the deployment of those workloads from one or more control nodes. -* Wrap containers in a deployment unit called a pod. Using pods provides extra metadata with the container and offers the ability to group several containers in a single deployment entity. -* Create special kinds of assets. For example, services are represented by a set of pods and a policy that defines how they are accessed. This policy allows containers to connect to the services that they need even if they do not have the specific IP addresses for the services. Replication controllers are another special asset that indicates how many pod Replicas are required to run at a time. You can use this capability to automatically scale your application to adapt to its current demand. - -To learn more about Kubernetes, see the link:https://kubernetes.io/docs/home/?path=users&persona=app-developer&level=foundational[Kubernetes documentation].