|
1 |
| -<img src="/logo.svg#gh-light-mode-only" height="125px" alt="Operator Lifecycle Manager"></img> |
2 |
| -<img src="/logo-dark-mode.svg#gh-dark-mode-only" height="125px" alt="Operator Lifecycle Manager"></img> |
| 1 | +<img src="logo/logo.svg#gh-light-mode-only" height="125px" alt="Operator Lifecycle Manager"></img> |
| 2 | +<img src="logo/logo-dark-mode.svg#gh-dark-mode-only" height="125px" alt="Operator Lifecycle Manager"></img> |
3 | 3 |
|
4 | 4 | [](https://quay.io/repository/operator-framework/olm)
|
5 | 5 | [](http://www.apache.org/licenses/LICENSE-2.0.html)
|
|
10 | 10 |
|
11 | 11 | 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].
|
@@ -100,10 +99,10 @@ To minimize the effort required to run an application on kubernetes, OLM handles
|
100 | 99 |
|
101 | 100 | This is achieved through additional metadata on the application definition. Each operator must define:
|
102 | 101 |
|
103 |
| - - The CRDs that it is responsible for managing. |
104 |
| - - e.g., the etcd operator manages `EtcdCluster`. |
105 |
| - - The CRDs that it depends on. |
106 |
| - - e.g., the vault operator depends on `EtcdCluster`, because Vault is backed by etcd. |
| 102 | +- The CRDs that it is responsible for managing. |
| 103 | + - e.g., the etcd operator manages `EtcdCluster`. |
| 104 | +- The CRDs that it depends on. |
| 105 | + - e.g., the vault operator depends on `EtcdCluster`, because Vault is backed by etcd. |
107 | 106 |
|
108 | 107 | 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.
|
109 | 108 |
|
|
0 commit comments