From 698401191cb88c31557932c27e0e9d2de5e9db0c Mon Sep 17 00:00:00 2001 From: Jakub Al-Khalili Date: Wed, 27 Nov 2019 13:10:28 +0100 Subject: [PATCH] Update CRC & IMAGE_PULL_MODE docs --- .../content/en/docs/Getting Started/future/developer-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/en/docs/Getting Started/future/developer-guide.md b/website/content/en/docs/Getting Started/future/developer-guide.md index 93435098..dcbbb926 100644 --- a/website/content/en/docs/Getting Started/future/developer-guide.md +++ b/website/content/en/docs/Getting Started/future/developer-guide.md @@ -122,7 +122,7 @@ make e2e CONFIG=config.crc.env ### Use Docker image instead of podman (Code Ready Containers) -If you have trouble to build image with `podman`, you can set additional flag `USE_ORGANIZATION` to pull image from organization. +If you have trouble to build image with `podman`, you can set additional flag `IMAGE_PULL_MODE` to pull image from organization. At first, edit you `config.base.env` and change `DOCKER_ORGANIZATION` to your account/organization name from [hub](https://hub.docker.com/). Next, you need to pull image to your repository: @@ -134,7 +134,7 @@ $ make cr-build cr-snapshot-push When image will be uploaded to repository, you can now write this command to run E2E tests: ```bash -$ make e2e E2E_TEST_SELECTOR='^TestConfiguration$' config=config.crc.env USE_ORGANIZATION=true +$ make e2e E2E_TEST_SELECTOR='^TestConfiguration$' config=config.crc.env IMAGE_PULL_MODE=remote ``` ## Tips & Tricks