Makefile: update test-e2e-node help

This commit is contained in:
Ed Bartosh 2020-07-22 01:30:03 +03:00
parent 98814409ba
commit 667461ace8

View File

@ -209,8 +209,8 @@ define TEST_E2E_NODE_HELP_INFO
# #
# Args: # Args:
# FOCUS: Regexp that matches the tests to be run. Defaults to "". # FOCUS: Regexp that matches the tests to be run. Defaults to "".
# SKIP: Regexp that matches the tests that needs to be skipped. Defaults # SKIP: Regexp that matches the tests that needs to be skipped.
# to "\[Flaky\]|\[Slow\]|\[Serial\]". # Defaults to "\[Flaky\]|\[Slow\]|\[Serial\]".
# TEST_ARGS: A space-separated list of arguments to pass to node e2e test. # TEST_ARGS: A space-separated list of arguments to pass to node e2e test.
# Defaults to "". # Defaults to "".
# RUN_UNTIL_FAILURE: If true, pass --untilItFails to ginkgo so tests are run # RUN_UNTIL_FAILURE: If true, pass --untilItFails to ginkgo so tests are run
@ -219,16 +219,16 @@ define TEST_E2E_NODE_HELP_INFO
# to false. # to false.
# ARTIFACTS: Local directory to scp test artifacts into from the remote hosts # ARTIFACTS: Local directory to scp test artifacts into from the remote hosts
# for REMOTE=true. Local directory to write juntil xml results into for REMOTE=false. # for REMOTE=true. Local directory to write juntil xml results into for REMOTE=false.
# Defaults to "/tmp/_artifacts". # Defaults to "/tmp/_artifacts/$$(date +%y%m%dT%H%M%S)".
# LIST_IMAGES: If true, don't run tests. Just output the list of available # LIST_IMAGES: For REMOTE=true only. If true, don't run tests. Just output the
# images for testing. Defaults to false. # list of available images for testing. Defaults to false.
# PARALLELISM: The number of ginkgo nodes to run. Defaults to 8. # PARALLELISM: The number of ginkgo nodes to run. Defaults to 8.
# RUNTIME: Container runtime to use (eg. docker, remote). # RUNTIME: Container runtime to use (eg. docker, remote).
# Defaults to "docker". # Defaults to "docker".
# CONTAINER_RUNTIME_ENDPOINT: remote container endpoint to connect to. # CONTAINER_RUNTIME_ENDPOINT: remote container endpoint to connect to.
# Used when RUNTIME is set to "remote". # Used when RUNTIME is set to "remote".
# IMAGE_SERVICE_ENDPOINT: remote image endpoint to connect to, to prepull images. # IMAGE_SERVICE_ENDPOINT: remote image endpoint to connect to, to prepull images.
# Used when RUNTIME is set to "remote". # Used when RUNTIME is set to "remote".
# IMAGE_CONFIG_FILE: path to a file containing image configuration. # IMAGE_CONFIG_FILE: path to a file containing image configuration.
# SYSTEM_SPEC_NAME: The name of the system spec to be used for validating the # SYSTEM_SPEC_NAME: The name of the system spec to be used for validating the
# image in the node conformance test. The specs are located at # image in the node conformance test. The specs are located at
@ -246,12 +246,13 @@ define TEST_E2E_NODE_HELP_INFO
# CLEANUP: For REMOTE=true only. If false, do not stop processes or delete # CLEANUP: For REMOTE=true only. If false, do not stop processes or delete
# test files on remote hosts. Defaults to true. # test files on remote hosts. Defaults to true.
# IMAGE_PROJECT: For REMOTE=true only. Project containing images provided to # IMAGE_PROJECT: For REMOTE=true only. Project containing images provided to
# IMAGES. Defaults to "kubernetes-node-e2e-images". # $$IMAGES. Defaults to "kubernetes-node-e2e-images".
# INSTANCE_PREFIX: For REMOTE=true only. Instances created from images will # INSTANCE_PREFIX: For REMOTE=true only. Instances created from images will
# have the name "${INSTANCE_PREFIX}-${IMAGE_NAME}". Defaults to "test". # have the name "$${INSTANCE_PREFIX}-$${IMAGE_NAME}". Defaults to "test".
# INSTANCE_METADATA: For REMOTE=true and running on GCE only. # INSTANCE_METADATA: For REMOTE=true and running on GCE only.
# GUBERNATOR: For REMOTE=true only. Produce link to Gubernator to view logs. # GUBERNATOR: For REMOTE=true only. Produce link to Gubernator to view logs.
# Defaults to false. # Defaults to false.
# TEST_SUITE: For REMOTE=true only. Test suite to use. Defaults to "default".
# #
# Example: # Example:
# make test-e2e-node FOCUS=Kubelet SKIP=container # make test-e2e-node FOCUS=Kubelet SKIP=container