From 3f13892f10b3773cf840569c3af215ef1e61bdb5 Mon Sep 17 00:00:00 2001 From: Sylvester Carolan Date: Tue, 21 May 2024 12:54:52 -0400 Subject: [PATCH] Corrected minor typo. --- site/content/en/docs/contrib/testing.en.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/site/content/en/docs/contrib/testing.en.md b/site/content/en/docs/contrib/testing.en.md index 1ca15f32e7..daf6742420 100644 --- a/site/content/en/docs/contrib/testing.en.md +++ b/site/content/en/docs/contrib/testing.en.md @@ -8,10 +8,10 @@ description: > ## Prerequisites -* Go distribution - * Specific version depends on minikube version. - * The current dependency version can be found here : [master branch's go.mod file](https://github.com/kubernetes/minikube/blob/master/go.mod). -* If you are on Linux, you will need to install `libvirt-dev`, since unit tests need kvm2 driver: +- Go distribution + - Specific version depends on minikube version. + - The current dependency version can be found here : [master branch's go.mod file](https://github.com/kubernetes/minikube/blob/master/go.mod). +- If you are on Linux, you will need to install `libvirt-dev`, since unit tests need kvm2 driver: ```shell # For Debian based @@ -46,7 +46,7 @@ You may find it useful to set various options to test only a particular test aga ```shell env TEST_ARGS="-minikube-start-args=--driver=hyperkit -test.run TestStartStop" make integration - ``` +``` ### Quickly iterating on a single test @@ -86,6 +86,7 @@ Install [kubectl](https://v1-18.docs.kubernetes.io/docs/tasks/tools/install-kube Clone the [minikube repo](https://github.com/kubernetes/minikube) ## Compile the latest minikube binary + ```console % cd % make @@ -95,7 +96,7 @@ Clone the [minikube repo](https://github.com/kubernetes/minikube) ```console % cd -./hack/conformance_tests.sh out/minikube --driver=docker --container-runtimer=docker --kubernetes-version=stable +./hack/conformance_tests.sh out/minikube --driver=docker --container-runtime=docker --kubernetes-version=stable ``` This script will run the latest sonobuoy against a minikube cluster with two nodes and the provided parameters.