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
[Monorepo] Move catalogd/README.md content to project README
- Integrated relevant content from catalogd/README.md into the project's main README by adding Demo and Quick-Start steps from catalogd/README.md to the main README.
- Removed the old catalogd/README.md as its remaining content (e.g., contribution guidelines) is already covered in CONTRIBUTING.md.
* catalogd (this repository under the directory catalogd/)
18
18
19
19
For a more complete overview of OLM v1 and how it differs from OLM v0, see our [overview](docs/project/olmv1_design_decisions.md).
20
20
@@ -26,6 +26,152 @@ The documentation currently lives at [website](https://operator-framework.github
26
26
27
27
To get started with OLM v1, please see our [Getting Started](https://operator-framework.github.io/operator-controller/getting-started/olmv1_getting_started/) documentation.
Procedure steps marked with an asterisk (`*`) are likely to change with future API updates.
36
+
37
+
**NOTE:** The examples below use the `-k` flag in curl to skip validating the TLS certificates. This is for demonstration purposes only.
38
+
39
+
1. To get started with OLM v1, please see our [Getting Started](https://operator-framework.github.io/operator-controller/getting-started/olmv1_getting_started/) documentation.
40
+
41
+
1. Create a `ClusterCatalog` object that points to the OperatorHub Community catalog by running the following command:
42
+
43
+
```sh
44
+
$ kubectl apply -f - <<EOF
45
+
apiVersion: olm.operatorframework.io/v1
46
+
kind: ClusterCatalog
47
+
metadata:
48
+
name: operatorhubio
49
+
spec:
50
+
source:
51
+
type: Image
52
+
image:
53
+
ref: quay.io/operatorhubio/catalog:latest
54
+
EOF
55
+
```
56
+
57
+
1. Verify the `ClusterCatalog` object was created successfully by running the following command:
0 commit comments