|
| 1 | +:_mod-docs-content-type: ASSEMBLY |
| 2 | +[id="getting-started-openshift-common-terms_{context}"] |
| 3 | += Glossary of common terms for {product-title} |
| 4 | + |
| 5 | +include::_attributes/common-attributes.adoc[] |
| 6 | +:context: glossary |
| 7 | + |
| 8 | +toc::[] |
| 9 | + |
| 10 | +This glossary defines common Kubernetes and {product-title} terms. |
| 11 | + |
| 12 | +access policies:: |
| 13 | +A set of roles that dictate how users, applications, and entities within a cluster interact with one another. An access policy increases cluster security. |
| 14 | + |
| 15 | +admission plugins:: |
| 16 | +Admission plugins enforce security policies, resource limitations, or configuration requirements. |
| 17 | + |
| 18 | +authentication:: |
| 19 | +// The following variations have only minor differences, but are separated for maintainability. |
| 20 | +ifndef::openshift-dedicated,openshift-rosa[] |
| 21 | +To control access to an {product-title} cluster, a cluster administrator can configure user authentication to ensure only approved users access the cluster. To interact with an {product-title} cluster, you must authenticate with the {product-title} API. You can authenticate by providing an OAuth access token or an X.509 client certificate in your requests to the {product-title} API. |
| 22 | +endif::openshift-dedicated,openshift-rosa[] |
| 23 | +ifdef::openshift-rosa[] |
| 24 | +To control access to a {product-title} cluster, an administrator with the `dedicated-admin` role can configure user authentication to ensure only approved users access the cluster. To interact with a {product-title} cluster, you must authenticate with the {product-title} API. You can authenticate by providing an OAuth access token or an X.509 client certificate in your requests to the {product-title} API. |
| 25 | +endif::openshift-rosa[] |
| 26 | +ifdef::openshift-dedicated[] |
| 27 | +To control access to an {product-title} cluster, an administrator with the `dedicated-admin` role can configure user authentication to ensure only approved users access the cluster. To interact with an {product-title} cluster, you must authenticate with the {product-title} API. You can authenticate by providing an OAuth access token or an X.509 client certificate in your requests to the {product-title} API. |
| 28 | +endif::openshift-dedicated[] |
| 29 | + |
| 30 | +bootstrap:: |
| 31 | +A temporary machine that runs minimal Kubernetes and deploys the {product-title} control plane. |
| 32 | + |
| 33 | +build:: |
| 34 | +A build is the process of transforming input parameters, such as source code, into a runnable container image. This process is defined by a BuildConfig object, which specifies the entire build workflow. {product-title} utilizes Kubernetes to create containers from the build images and push them to the integrated container registry. |
| 35 | + |
| 36 | +certificate signing requests (CSRs):: |
| 37 | +A resource requests a denoted signer to sign a certificate. This request might get approved or denied. |
| 38 | + |
| 39 | +Cluster Version Operator (CVO):: |
| 40 | +An Operator that checks with the {product-title} Update Service to see the valid updates and update paths based on current component versions and information in the graph. |
| 41 | + |
| 42 | +compute nodes:: |
| 43 | +Nodes that are responsible for executing workloads for cluster users. |
| 44 | + |
| 45 | +configuration drift:: |
| 46 | +A situation where the configuration on a node does not match what the machine config specifies. |
| 47 | + |
| 48 | +container:: |
| 49 | +Container is a lightweight, portable application instance that runs in OCI-compliant environments on compute nodes. Each container is a runtime instance of an Open Container Initiative (OCI)-compliant image, which is a binary package containing the application and its dependencies. A single compute node can host multiple containers, with its capacity determined by the memory and CPU resources available, whether on cloud infrastructure, physical hardware, or virtualized environments. |
| 50 | + |
| 51 | +container orchestration engine:: |
| 52 | +Software that automates the deployment, management, scaling, and networking of containers. |
| 53 | + |
| 54 | +container workloads:: |
| 55 | +Applications that are packaged and deployed in containers. |
| 56 | + |
| 57 | +control groups (cgroups):: |
| 58 | +Partitions sets of processes into groups to manage and limit the resources processes consume. |
| 59 | + |
| 60 | +control plane:: |
| 61 | +A container orchestration layer that exposes the API and interfaces to define, deploy, and manage the life cycle of containers. Control planes are also known as control plane machines. |
| 62 | + |
| 63 | +CRI-O:: |
| 64 | +A Kubernetes native container runtime implementation that integrates with the operating system to deliver an efficient Kubernetes experience. |
| 65 | + |
| 66 | +Deployment and DeploymentConfig:: |
| 67 | +{product-title} supports both Kubernetes Deployment objects and {product-title} DeploymentConfig objects for managing application rollout and scaling. |
| 68 | ++ |
| 69 | +A Deployment object defines how an application is deployed as pods. It specifies the container image to pull from the registry, the number of replicas to maintain, and the labels that guide scheduling onto compute nodes. The Deployment creates and manages a ReplicaSet, which ensures the specified number of pods are running. Additionally, Deployment objects support various rollout strategies to update pods while maintaining application availability. |
| 70 | ++ |
| 71 | +A DeploymentConfig object extends Deployment functionality by introducing change triggers, which automatically create new deployment versions when a new container image version becomes available or when other defined changes occur. This enables automated rollout management within {product-title}. |
| 72 | + |
| 73 | +Dockerfile:: |
| 74 | +A text file that contains the user commands to perform on a terminal to assemble the image. |
| 75 | + |
| 76 | +ifdef::openshift-rosa[] |
| 77 | +hosted control planes:: |
| 78 | +A {product-title} feature that enables hosting a control plane on the {product-title} cluster from its data plane and workers. This model performs the following actions: |
| 79 | ++ |
| 80 | +* Optimize infrastructure costs required for the control planes. |
| 81 | +* Improve the cluster creation time. |
| 82 | +* Enable hosting the control plane using the Kubernetes native high level primitives. For example, deployments and stateful sets. |
| 83 | +* Allow a strong network segmentation between the control plane and workloads. |
| 84 | +endif::openshift-rosa[] |
| 85 | +ifndef::openshift-dedicated,openshift-rosa[] |
| 86 | +hosted control planes:: |
| 87 | +A {product-title} feature that enables hosting a control plane on the {product-title} cluster from its data plane and workers. This model performs the following actions: |
| 88 | + |
| 89 | +* Optimize infrastructure costs required for the control planes. |
| 90 | +* Improve the cluster creation time. |
| 91 | +* Enable hosting the control plane using the Kubernetes native high level primitives. For example, deployments and stateful sets. |
| 92 | +* Allow a strong network segmentation between the control plane and workloads. |
| 93 | +endif::openshift-dedicated,openshift-rosa[] |
| 94 | +
|
| 95 | +hybrid cloud deployments:: |
| 96 | +Deployments that deliver a consistent platform across bare metal, virtual, private, and public cloud environments. This offers speed, agility, and portability. |
| 97 | + |
| 98 | +Ignition:: |
| 99 | +A utility that {op-system} uses to manipulate disks during initial configuration. It completes common disk tasks, including partitioning disks, formatting partitions, writing files, and configuring users. |
| 100 | + |
| 101 | +installer-provisioned infrastructure:: |
| 102 | +The installation program deploys and configures the infrastructure that the cluster runs on. |
| 103 | + |
| 104 | +kubelet:: |
| 105 | +A primary node agent that runs on each node in the cluster to ensure that containers are running in a pod. |
| 106 | + |
| 107 | +Kubernetes:: |
| 108 | +Kubernetes is an open source container orchestration engine for automating deployment, scaling, and management of containerized applications. |
| 109 | + |
| 110 | +kubernetes manifest:: |
| 111 | +Specifications of a Kubernetes API object in a JSON or YAML format. A configuration file can include deployments, config maps, secrets, daemon sets. |
| 112 | + |
| 113 | +Machine Config Daemon (MCD):: |
| 114 | +A daemon that regularly checks the nodes for configuration drift. |
| 115 | + |
| 116 | +Machine Config Operator (MCO):: |
| 117 | +An Operator that applies the new configuration to your cluster machines. |
| 118 | + |
| 119 | +machine config pools (MCP):: |
| 120 | +A group of machines, such as control plane components or user workloads, that are based on the resources that they handle. |
| 121 | + |
| 122 | +metadata:: |
| 123 | +Additional information about cluster deployment artifacts. |
| 124 | + |
| 125 | +microservices:: |
| 126 | +An approach to writing software. Applications can be separated into the smallest components, independent from each other by using microservices. |
| 127 | + |
| 128 | +mirror registry:: |
| 129 | +A registry that holds the mirror of {product-title} images. |
| 130 | + |
| 131 | +monolithic applications:: |
| 132 | +Applications that are self-contained, built, and packaged as a single piece. |
| 133 | + |
| 134 | +namespaces:: |
| 135 | +A namespace isolates specific system resources that are visible to all processes. Inside a namespace, only processes that are members of that namespace can see those resources. |
| 136 | + |
| 137 | +networking:: |
| 138 | +Network information of {product-title} cluster. |
| 139 | + |
| 140 | +node:: |
| 141 | +A compute machine in the {product-title} cluster. A node is either a virtual machine (VM) or a physical machine. |
| 142 | + |
| 143 | +OpenShift CLI (`oc`):: |
| 144 | +A command line tool to run {product-title} commands on the terminal. |
| 145 | + |
| 146 | +ifndef::openshift-dedicated,openshift-rosa[] |
| 147 | +OpenShift Dedicated:: |
| 148 | +A managed {op-system-base} {product-title} offering on Amazon Web Services (AWS) and Google Cloud Platform (GCP). OpenShift Dedicated focuses on building and scaling applications. |
| 149 | +endif::openshift-dedicated,openshift-rosa[] |
| 150 | + |
| 151 | +OpenShift Update Service (OSUS):: |
| 152 | +For clusters with internet access, {op-system-base-full} provides over-the-air updates by using an OpenShift update service as a hosted service located behind public APIs. |
| 153 | + |
| 154 | +{product-registry}:: |
| 155 | +A registry provided by {product-title} to manage images. |
| 156 | + |
| 157 | +Operator:: |
| 158 | +The preferred method of packaging, deploying, and managing a Kubernetes application in |
| 159 | +ifdef::openshift-rosa[] |
| 160 | +a |
| 161 | +endif::openshift-rosa[] |
| 162 | +ifndef::openshift-rosa[] |
| 163 | +an |
| 164 | +endif::openshift-rosa[] |
| 165 | +{product-title} cluster. An Operator is a Kubernetes-native application designed to translate operational knowledge into a software that is packaged and shared with customers. Traditionally, tasks such as installation, configuration, scaling, updates, and failover were managed manually by administrators by using scripts or automation tools like Ansible. Operators bring these capabilities into Kubernetes, making them natively integrated and automated within the cluster. |
| 166 | ++ |
| 167 | +Operators manage both Day 1 operations such as installation and configuration, and Day 2 operations such as scaling, updates, backups, failover and restores. By leveraging Kubernetes APIs and concepts, Operators provide an automated and consistent way to manage complex applications. |
| 168 | + |
| 169 | +OperatorHub:: |
| 170 | +A platform that contains various {product-title} Operators to install. |
| 171 | + |
| 172 | +Operator Lifecycle Manager (OLM):: |
| 173 | +OLM helps you to install, update, and manage the lifecycle of Kubernetes native applications. OLM is an open source toolkit designed to manage Operators in an effective, automated, and scalable way. |
| 174 | + |
| 175 | +OSTree:: |
| 176 | +An upgrade system for Linux-based operating systems that performs atomic upgrades of complete file system trees. OSTree tracks meaningful changes to the file system tree using an addressable object store, and is designed to complement existing package management systems. |
| 177 | + |
| 178 | +over-the-air (OTA) updates:: |
| 179 | +The {product-title} Update Service (OSUS) provides over-the-air updates to {product-title}, including {op-system-first}. |
| 180 | + |
| 181 | +pod:: |
| 182 | +A pod is one or more containers deployed together on one host. It consists of a colocated group of containers with shared resources such as volumes and IP addresses. A pod is also the smallest compute unit defined, deployed, and managed. |
| 183 | +In {product-title}, pods replace individual application containers as the smallest deployable unit. |
| 184 | +Pods are the orchestrated unit in {product-title}. {product-title} schedules and runs all containers in a pod on the same node. Complex applications are made up of multiple pods, each with their own containers. They interact externally and also with another inside the {product-title} environment. |
| 185 | + |
| 186 | +private registry:: |
| 187 | +{product-title} can use any server implementing the container image registry API as a source of the image which helps the developers to push and pull their private container images. |
| 188 | + |
| 189 | +project:: |
| 190 | +{product-title} uses projects to enable groups of users or developers to work together. A project defines the scope of resources, manages user access, and enforces resource quotas and limits. |
| 191 | ++ |
| 192 | +A project is a Kubernetes namespace with additional annotations that provide role-based access control (RBAC) and management capabilities. It serves as the central mechanism for organizing resources, ensuring isolation between different user groups. |
| 193 | + |
| 194 | +public registry:: |
| 195 | +{product-title} can use any server implementing the container image registry API as a source of the image which allows the developers to push and pull their public container images. |
| 196 | + |
| 197 | +{op-system-base} {product-title} Cluster Manager:: |
| 198 | +A managed service where you can install, modify, operate, and upgrade your {product-title} clusters. |
| 199 | + |
| 200 | +{op-system-base} Quay Container Registry:: |
| 201 | +A Quay.io container registry that serves most of the container images and Operators to {product-title} clusters. |
| 202 | + |
| 203 | +replication controllers:: |
| 204 | +An asset that indicates how many pod replicas are required to run at a time. |
| 205 | + |
| 206 | +ReplicaSet and ReplicationController:: |
| 207 | +The Kubernetes `ReplicaSet` and `ReplicationController` objects ensure that the desired number of pod replicas are running at all times. If a pod fails, exits, or is deleted, these controllers automatically create new pods to maintain the specified replica count. Conversely, if there are more pods than required, the ReplicaSet or ReplicationController scales down by terminating excess pods to match the defined replica count. |
| 208 | + |
| 209 | +role-based access control (RBAC):: |
| 210 | +A key security control to ensure that cluster users and workloads have only access to resources required to execute their roles. |
| 211 | + |
| 212 | +route:: |
| 213 | +A route is a way to expose a service by giving it an externally reachable hostname, such as www.example.com. Each route consists of a route name, a service selector, and optionally, a security configuration. |
| 214 | + |
| 215 | +router:: |
| 216 | +A router processes defined routes and their associated service endpoints, enabling external clients to access applications. While deploying a multi-tier application in {product-title} is straightforward, external traffic cannot reach the application without the routing layer. |
| 217 | + |
| 218 | +scaling:: |
| 219 | +The increasing or decreasing of resource capacity. |
| 220 | + |
| 221 | +service:: |
| 222 | +A service in {product-title} defines a logical set of pods and the access policies for reaching them. It provides a stable internal IP address and hostname, ensuring seamless communication between application components as pods are created and destroyed. |
| 223 | + |
| 224 | +Source-to-Image (S2I) image:: |
| 225 | +An image created based on the programming language of the application source code in {product-title} to deploy applications. |
| 226 | + |
| 227 | +storage:: |
| 228 | +// OSD and ROSA definitions are separated here due to different indefinite |
| 229 | +// articles. |
| 230 | +ifndef::openshift-dedicated,openshift-rosa[] |
| 231 | +{product-title} supports many types of storage, both for on-premise and cloud providers. You can manage container storage for persistent and non-persistent data in an {product-title} cluster. |
| 232 | +endif::openshift-dedicated,openshift-rosa[] |
| 233 | +ifdef::openshift-rosa[] |
| 234 | +{product-title} supports many types of storage for cloud providers. You can manage container storage for persistent and non-persistent data in a {product-title} cluster. |
| 235 | +endif::openshift-rosa[] |
| 236 | +ifdef::openshift-dedicated[] |
| 237 | +{product-title} supports many types of storage for cloud providers. You can manage container storage for persistent and non-persistent data in an {product-title} cluster. |
| 238 | +endif::openshift-dedicated[] |
| 239 | + |
| 240 | +telemetry:: |
| 241 | +A component to collect information such as size, health, and status of {product-title}. |
| 242 | + |
| 243 | +template:: |
| 244 | +A template describes a set of objects that can be parameterized and processed to produce a list of objects for creation by {product-title}. |
| 245 | + |
| 246 | +ifndef::openshift-dedicated,openshift-rosa[] |
| 247 | +user-provisioned infrastructure:: |
| 248 | +You can install {product-title} on the infrastructure that you provide. You can use the installation program to generate the assets required to provision the cluster infrastructure, create the cluster infrastructure, and then deploy the cluster to the infrastructure that you provided. |
| 249 | +endif::openshift-dedicated,openshift-rosa[] |
| 250 | + |
| 251 | +web console:: |
| 252 | +A user interface (UI) to manage {product-title}. |
0 commit comments