From b64aaebc89b3d38b97f83142c0f71c23d0f68f6f Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Mon, 30 May 2022 13:09:57 +0200 Subject: [PATCH] docs: referring to docker hub image --- docs/content/contributing/development.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/contributing/development.md b/docs/content/contributing/development.md index fb15bfa2..879a22c4 100644 --- a/docs/content/contributing/development.md +++ b/docs/content/contributing/development.md @@ -125,12 +125,12 @@ $ go mod download $ make docker-build # Retrieve the built image version -$ export CAPSULE_IMAGE_VESION=`docker images --format '{{.Tag}}' quay.io/clastix/capsule` +$ export CAPSULE_IMAGE_VESION=`docker images --format '{{.Tag}}' clastix/capsule` # If k3s, load the image into cluster by -$ k3d image import --cluster k3s-capsule capsule quay.io/clastix/capsule:${CAPSULE_IMAGE_VESION} +$ k3d image import --cluster k3s-capsule capsule clastix/capsule:${CAPSULE_IMAGE_VESION} # If Kind, load the image into cluster by -$ kind load docker-image --name kind-capsule quay.io/clastix/capsule:${CAPSULE_IMAGE_VESION} +$ kind load docker-image --name kind-capsule clastix/capsule:${CAPSULE_IMAGE_VESION} # deploy all the required manifests # Note: 1) please retry if you saw errors; 2) if you want to clean it up first, run: make remove