From ec3031c9d53c527bbc7b964ff2e472dc7b8e3525 Mon Sep 17 00:00:00 2001 From: Jordan Keister Date: Mon, 10 Oct 2022 14:33:15 -0500 Subject: [PATCH] tweak to make clearer some implicit dependencies (#68) Signed-off-by: Jordan Keister Signed-off-by: Jordan Keister --- docs/tutorial.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 6d0c872..721bb3c 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -44,7 +44,7 @@ Use the [Operator SDK](https://sdk.operatorframework.io/docs/installation/) CLI Create a directory for the memcached operator: ``` -mkdir -p +mkdir -p memcached-operator ``` Navigate into the newly created directory and initialize the project with: @@ -84,6 +84,8 @@ The following command will build and push an operator image: make docker-build docker-push IMG=//: ``` +Note: this tutorial will use the docker image tag `example.com/memcached-operator:v0.0.1` for future steps. You should replace references to this with the docker tag you pushed as `IMG`, above. + ### Generating CRD manifests ```sh