Skip to content

Commit 5ad66bc

Browse files
authoredApr 20, 2022
Move logos into their own directory (#2746)
Signed-off-by: timflannagan <[email protected]>
1 parent 34a82f9 commit 5ad66bc

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed
 

‎README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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>
33

44
[![Container Repository on Quay.io](https://quay.io/repository/operator-framework/olm/status "Container Repository on Quay.io")](https://quay.io/repository/operator-framework/olm)
55
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
@@ -10,7 +10,6 @@
1010

1111
User documentation can be found on the [OLM website][olm-docs].
1212

13-
1413
## Overview
1514

1615
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
10099

101100
This is achieved through additional metadata on the application definition. Each operator must define:
102101

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.
107106

108107
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.
109108

‎logo/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Logo
2+
3+
Home for the OLM related logos.
File renamed without changes.

‎logo.png ‎logo/logo.png

File renamed without changes.

‎logo.svg ‎logo/logo.svg

File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.