Chapter 3. Operator Framework glossary of common terms
Operator Lifecycle Manager (OLM) v1 is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.
For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.
The following terms are related to the Operator Framework, including Operator Lifecycle Manager (OLM) v1.
3.1. Bundle Copy linkLink copied to clipboard!
In the bundle format, a bundle is a collection of an Operator CSV, manifests, and metadata. Together, they form a unique version of an Operator that can be installed onto the cluster.
3.2. Bundle image Copy linkLink copied to clipboard!
In the bundle format, a bundle image is a container image that is built from Operator manifests and that contains one bundle. Bundle images are stored and distributed by Open Container Initiative (OCI) spec container registries, such as Quay.io or DockerHub.
3.3. Catalog source Copy linkLink copied to clipboard!
A catalog source represents a store of metadata that OLM can query to discover and install Operators and their dependencies.
3.4. Channel Copy linkLink copied to clipboard!
A channel defines a stream of updates for an Operator and is used to roll out updates for subscribers. The head points to the latest version of that channel. For example, a stable
channel would have all stable versions of an Operator arranged from the earliest to the latest.
An Operator can have several channels, and a subscription binding to a certain channel would only look for updates in that channel.
3.5. Channel head Copy linkLink copied to clipboard!
A channel head refers to the latest known update in a particular channel.
3.6. Cluster service version Copy linkLink copied to clipboard!
A cluster service version (CSV) is a YAML manifest created from Operator metadata that assists OLM in running the Operator in a cluster. It is the metadata that accompanies an Operator container image, used to populate user interfaces with information such as its logo, description, and version.
It is also a source of technical information that is required to run the Operator, like the RBAC rules it requires and which custom resources (CRs) it manages or depends on.
3.7. Dependency Copy linkLink copied to clipboard!
An Operator may have a dependency on another Operator being present in the cluster. For example, the Vault Operator has a dependency on the etcd Operator for its data persistence layer.
OLM resolves dependencies by ensuring that all specified versions of Operators and CRDs are installed on the cluster during the installation phase. This dependency is resolved by finding and installing an Operator in a catalog that satisfies the required CRD API, and is not related to packages or bundles.
3.8. Index image Copy linkLink copied to clipboard!
In the bundle format, an index image refers to an image of a database (a database snapshot) that contains information about Operator bundles including CSVs and CRDs of all versions. This index can host a history of Operators on a cluster and be maintained by adding or removing Operators using the opm
CLI tool.
3.9. Install plan Copy linkLink copied to clipboard!
An install plan is a calculated list of resources to be created to automatically install or upgrade a CSV.
3.10. Multitenancy Copy linkLink copied to clipboard!
A tenant in OpenShift Container Platform is a user or group of users that share common access and privileges for a set of deployed workloads, typically represented by a namespace or project. You can use tenants to provide a level of isolation between different groups or teams.
When a cluster is shared by multiple users or groups, it is considered a multitenant cluster.
3.11. Operator group Copy linkLink copied to clipboard!
An Operator group configures all Operators deployed in the same namespace as the OperatorGroup
object to watch for their CR in a list of namespaces or cluster-wide.
3.12. Package Copy linkLink copied to clipboard!
In the bundle format, a package is a directory that encloses all released history of an Operator with each version. A released version of an Operator is described in a CSV manifest alongside the CRDs.
3.13. Registry Copy linkLink copied to clipboard!
A registry is a database that stores bundle images of Operators, each with all of its latest and historical versions in all channels.
3.14. Subscription Copy linkLink copied to clipboard!
A subscription keeps CSVs up to date by tracking a channel in a package.
3.15. Update graph Copy linkLink copied to clipboard!
An update graph links versions of CSVs together, similar to the update graph of any other packaged software. Operators can be installed sequentially, or certain versions can be skipped. The update graph is expected to grow only at the head with newer versions being added.