Skip to content
Snippets Groups Projects
Verified Commit 0b9a7946 authored by David Hoese's avatar David Hoese
Browse files

Use newer kubectl to run curl tests to have -q available

parent ef475ca3
No related branches found
Tags gamma-test-r20220119_1945
No related merge requests found
......@@ -95,7 +95,8 @@ run_remote_curl_pod() {
shift 2
other_args="$@"
fi
kubectl run -qit --rm --restart=Never curl-test-${pod_prefix} --image=curlimages/curl:7.81.0 -- curl $other_args "${curl_target}"
# NOTE: Use kubectl 1.21 or greater to make sure "-q" flag exists
kubectl.1.22 run -qit --rm --restart=Never curl-test-${pod_prefix} --image=curlimages/curl:7.81.0 -- curl $other_args "${curl_target}"
}
run_grb_checks() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment