Skip to content

Commit cc238d1

Browse files
committed
Move logos into their own directory
Signed-off-by: timflannagan <[email protected]>
1 parent 6048250 commit cc238d1

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

README.md

+7-8
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].
@@ -97,7 +96,7 @@ Learn more about the components used by OLM by reading about the [architecture]
9796

9897
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.
9998

100-
Examples: [EtcdCluster CRD](https://github.com/redhat-openshift-ecosystem/community-operators-prod/blob/main/operators/etcd/0.9.4/etcdclusters.etcd.database.coreos.com.crd.yaml),
99+
Examples: [EtcdCluster CRD](https://github.com/redhat-openshift-ecosystem/community-operators-prod/blob/main/operators/etcd/0.9.4/etcdclusters.etcd.database.coreos.com.crd.yaml),
101100
[EtcdBackup CRD](https://github.com/redhat-openshift-ecosystem/community-operators-prod/blob/main/operators/etcd/0.9.4/etcdbackups.etcd.database.coreos.com.crd.yaml)
102101

103102
## Descriptors
@@ -112,10 +111,10 @@ To minimize the effort required to run an application on kubernetes, OLM handles
112111

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

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

120119
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.
121120

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 renamed to logo/logo.png

File renamed without changes.

logo.svg renamed to logo/logo.svg

File renamed without changes.

0 commit comments

Comments
 (0)