You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://quay.io/repository/operator-framework/olm)
User documentation can be found on the [OLM website][olm-docs].
12
12
13
-
14
13
## Overview
15
14
16
15
This project is a component of the [Operator Framework](https://github.com/operator-framework), an open source toolkit to manage Kubernetes native applications, called Operators, in an effective, automated, and scalable way. Read more in the [introduction blog post](https://operatorhub.io/what-is-an-operator) and learn about practical use cases at the [OLM website][olm-docs].
@@ -97,7 +96,7 @@ Learn more about the components used by OLM by reading about the [architecture]
97
96
98
97
OLM standardizes interactions with operators by requiring that the interface to an operator be via the Kubernetes API. Because we expect users to define the interfaces to their applications, OLM currently uses CRDs to define the Kubernetes API interactions.
@@ -112,10 +111,10 @@ To minimize the effort required to run an application on kubernetes, OLM handles
112
111
113
112
This is achieved through additional metadata on the application definition. Each operator must define:
114
113
115
-
- The CRDs that it is responsible for managing.
116
-
- e.g., the etcd operator manages `EtcdCluster`.
117
-
- The CRDs that it depends on.
118
-
- e.g., the vault operator depends on `EtcdCluster`, because Vault is backed by etcd.
114
+
- The CRDs that it is responsible for managing.
115
+
- e.g., the etcd operator manages `EtcdCluster`.
116
+
- The CRDs that it depends on.
117
+
- e.g., the vault operator depends on `EtcdCluster`, because Vault is backed by etcd.
119
118
120
119
Basic dependency resolution is then possible by finding, for each “required” CRD, the corresponding operator that manages it and installing it as well. Dependency resolution can be further constrained by the way a user interacts with catalogs.
0 commit comments