From 11f2d05e3162cf5e77c4c0b4da0f43d9bd39df17 Mon Sep 17 00:00:00 2001 From: timflannagan Date: Wed, 19 Jan 2022 18:06:14 -0500 Subject: [PATCH 1/2] 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 --- website/content/en/docs/olm-integration/quickstart-bundle.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/content/en/docs/olm-integration/quickstart-bundle.md b/website/content/en/docs/olm-integration/quickstart-bundle.md index 8c5ee1d0301..b3e541bda5a 100644 --- a/website/content/en/docs/olm-integration/quickstart-bundle.md +++ b/website/content/en/docs/olm-integration/quickstart-bundle.md @@ -16,7 +16,8 @@ These features are unavailable to projects of version `2` or less; this informat your `PROJECT` file's `version` value. ## Prerequisites -- 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`. + +- 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`. - User authorized with 'cluster-admin' permissions. - OLM installed on your cluster. The command `operator-sdk olm install` will attempt to install a basic OLM deployment on your cluster. From c58020d7f5a0a29bfe32144558b7055f430ce140 Mon Sep 17 00:00:00 2001 From: timflannagan Date: Wed, 19 Jan 2022 18:08:23 -0500 Subject: [PATCH 2/2] website: Fix bullet points not rendering in quickstart-bundle.md Signed-off-by: timflannagan --- .../content/en/docs/olm-integration/quickstart-bundle.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/content/en/docs/olm-integration/quickstart-bundle.md b/website/content/en/docs/olm-integration/quickstart-bundle.md index b3e541bda5a..9e9b2fa3d69 100644 --- a/website/content/en/docs/olm-integration/quickstart-bundle.md +++ b/website/content/en/docs/olm-integration/quickstart-bundle.md @@ -32,7 +32,7 @@ $ export IMG=docker.io/$USERNAME/memcached-operator:v$VERSION // location where $ export BUNDLE_IMG=docker.io/$USERNAME/memcached-operator-bundle:v$VERSION // location where your bundle will be hosted ``` -1. Create a bundle from the root directory of your project +- Create a bundle from the root directory of your project ```sh $ make bundle @@ -40,19 +40,19 @@ $ make bundle This will prompt you to enter basic information about your operator. -1. Build and push the bundle image +- Build and push the bundle image ```sh $ make bundle-build bundle-push ``` -1. Validate the bundle +- Validate the bundle ```sh $ operator-sdk bundle validate $BUNDLE_IMG ``` -1. Install the bundle with OLM +- Install the bundle with OLM ```sh $ operator-sdk run bundle $BUNDLE_IMG