You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -81,9 +81,9 @@ Currently, not all tests run selectively on the nodes belonging to the pool.
81
81
82
82
Use this command to run in dry-run mode. This is useful for checking what is in the test suite and provides output for all of the tests the image would run.
@@ -102,9 +102,9 @@ A `mirror` executable is shipped in the image to provide the input required by `
102
102
103
103
Run this command from an intermediate machine that has access both to the cluster and to link:https://catalog.redhat.com/software/containers/explore[registry.redhat.io] over the internet:
. The `mirror` command tries to mirror the u/s images by default. This can be overridden by passing a file with the following format to the image:
232
232
+
233
-
[source,yaml]
233
+
[source,yaml,subs="attributes+"]
234
234
----
235
235
[
236
236
{
237
237
"registry": "public.registry.io:5000",
238
-
"image": "imageforcnftests:4.11"
238
+
"image": "imageforcnftests:{product-version}"
239
239
},
240
240
{
241
241
"registry": "public.registry.io:5000",
242
-
"image": "imagefordpdk:4.11"
242
+
"image": "imagefordpdk:{product-version}"
243
243
}
244
244
]
245
245
----
246
246
247
247
. Pass it to the `mirror` command, for example saving it locally as `images.json`. With the following command, the local path is mounted in `/kubeconfig` inside the container and that can be passed to the mirror command.
@@ -352,18 +352,18 @@ The Ginkgo BDD (Behavior-Driven Development) framework serves as the base for th
352
352
353
353
You can use the `-ginkgo.focus` parameter to filter a set of tests:
354
354
355
-
[source,terminal]
355
+
[source,terminal,subs="attributes+"]
356
356
----
357
-
$ docker run -v $(pwd)/:/kubeconfig -e KUBECONFIG=/kubeconfig/kubeconfig registry.redhat.io/openshift4/cnf-tests-rhel8:v4.11 /usr/bin/test-run.sh -ginkgo.focus="performance|sctp"
357
+
$ docker run -v $(pwd)/:/kubeconfig -e KUBECONFIG=/kubeconfig/kubeconfig registry.redhat.io/openshift4/cnf-tests-rhel8:v{product-version} /usr/bin/test-run.sh -ginkgo.focus="performance|sctp"
358
358
----
359
359
360
360
You can run only the latency test using the `-ginkgo.focus` parameter.
361
361
362
362
To run only the latency test, you must provide the `-ginkgo.focus` parameter and the `PERF_TEST_PROFILE` environment variable that has the name of the `PerformanceProfile` that needs to be tested. For example:
A report with information about the cluster state and resources for troubleshooting can be produced by passing the `--report` parameter with the path where the report is dumped:
@@ -1187,7 +1187,7 @@ When you configure reserved and isolated CPUs, the infra containers in pods use
1187
1187
1188
1188
To override the performance profile, the manifest must be mounted inside the container and the tests must be instructed by setting the `PERFORMANCE_PROFILE_MANIFEST_OVERRIDE`:
0 commit comments