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
website: Fix typo in reference link in quickstart-bundle.md (#5510)
* website: Fix typo in reference link in quickstart-bundle.md
Update the reference link to the Go building-operators quickstart link.
Signed-off-by: timflannagan <[email protected]>
* website: Fix bullet points not rendering in quickstart-bundle.md
Signed-off-by: timflannagan <[email protected]>
Copy file name to clipboardExpand all lines: website/content/en/docs/olm-integration/quickstart-bundle.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@ These features are unavailable to projects of version `2` or less; this informat
16
16
your `PROJECT` file's `version` value.
17
17
18
18
## Prerequisites
19
-
- Have a working operator that you have uploaded to a container registry. This guide assumes the simple Golang Memcached operator from [the building operators section][sdk-user-guid-go] at version `0.0.1`.
19
+
20
+
- Have a working operator that you have uploaded to a container registry. This guide assumes the simple Golang Memcached operator from [the building operators section][sdk-user-guide-go] at version `0.0.1`.
20
21
- User authorized with 'cluster-admin' permissions.
21
22
- OLM installed on your cluster. The command `operator-sdk olm install` will attempt to install a basic OLM deployment on your cluster.
22
23
@@ -31,27 +32,27 @@ $ export IMG=docker.io/$USERNAME/memcached-operator:v$VERSION // location where
31
32
$ export BUNDLE_IMG=docker.io/$USERNAME/memcached-operator-bundle:v$VERSION // location where your bundle will be hosted
32
33
```
33
34
34
-
1. Create a bundle from the root directory of your project
35
+
- Create a bundle from the root directory of your project
35
36
36
37
```sh
37
38
$ make bundle
38
39
```
39
40
40
41
This will prompt you to enter basic information about your operator.
0 commit comments