Update docs - change CR to CONTAINER_RUNTIME, IMAGE_PULL_MODE in .env notice

This commit is contained in:
Jakub Al-Khalili 2019-11-28 10:04:03 +01:00 committed by Paweł Prażak
parent 698401191c
commit 15401ddc54
1 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ Run e2e tests with minikube:
```bash
make minikube-start
eval $(minikube docker-env)
make build e2e config=config.minikube.env CR=podman
make build e2e config=config.minikube.env CONTAINER_RUNTIME=podman
```
`config.minikube.env` is the E2E test profile which provides all connection info to operator to run on minikube.
@ -85,7 +85,7 @@ make build e2e config=config.minikube.env CR=podman
Run the specific e2e test:
```bash
make build e2e E2E_TEST_SELECTOR='^TestConfiguration$' config=config.minikube.env CR=podman
make build e2e E2E_TEST_SELECTOR='^TestConfiguration$' config=config.minikube.env CONTAINER_RUNTIME=podman
```
If you want to run E2E tests on CRC (Code Ready Containers by OpenShift), you should use `config.crc.env` profile instead of `config.minikube.env`.