Skip to content

Commit f5a67f6

Browse files
authored
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]>
1 parent f950211 commit f5a67f6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

website/content/en/docs/olm-integration/quickstart-bundle.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ These features are unavailable to projects of version `2` or less; this informat
1616
your `PROJECT` file's `version` value.
1717

1818
## 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`.
2021
- User authorized with 'cluster-admin' permissions.
2122
- OLM installed on your cluster. The command `operator-sdk olm install` will attempt to install a basic OLM deployment on your cluster.
2223

@@ -31,27 +32,27 @@ $ export IMG=docker.io/$USERNAME/memcached-operator:v$VERSION // location where
3132
$ export BUNDLE_IMG=docker.io/$USERNAME/memcached-operator-bundle:v$VERSION // location where your bundle will be hosted
3233
```
3334

34-
1. Create a bundle from the root directory of your project
35+
- Create a bundle from the root directory of your project
3536

3637
```sh
3738
$ make bundle
3839
```
3940

4041
This will prompt you to enter basic information about your operator.
4142

42-
1. Build and push the bundle image
43+
- Build and push the bundle image
4344

4445
```sh
4546
$ make bundle-build bundle-push
4647
```
4748

48-
1. Validate the bundle
49+
- Validate the bundle
4950

5051
```sh
5152
$ operator-sdk bundle validate $BUNDLE_IMG
5253
```
5354

54-
1. Install the bundle with OLM
55+
- Install the bundle with OLM
5556

5657
```sh
5758
$ operator-sdk run bundle $BUNDLE_IMG

0 commit comments

Comments
 (0)