1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00

Merge pull request #100085 from snarayan-redhat/OSDOCS-16526_unusedmodules_415

OSDOCS#16526: Delete unused modules
This commit is contained in:
Servesha Dudhgaonkar
2025-10-07 13:24:33 +05:30
committed by GitHub

View File

@@ -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].