From 79794b6c3d3cafeb7f317d2bad3f5b9d810b747f Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Thu, 8 Apr 2021 21:21:54 +0200 Subject: [PATCH] deploy: fix script for distributed provisioning The introduction of sed had input/output backwards. --- deploy/kubernetes-distributed/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/kubernetes-distributed/deploy.sh b/deploy/kubernetes-distributed/deploy.sh index 7c70eea39..2d70799b3 100755 --- a/deploy/kubernetes-distributed/deploy.sh +++ b/deploy/kubernetes-distributed/deploy.sh @@ -233,5 +233,5 @@ fi # Create a test driver configuration in the place where the prow job # expects it? if [ "${CSI_PROW_TEST_DRIVER}" ]; then - sed -e "s/capacity: true/capacity: ${have_csistoragecapacity}/" >"${BASE_DIR}/test-driver.yaml" "${CSI_PROW_TEST_DRIVER}" + sed -e "s/capacity: true/capacity: ${have_csistoragecapacity}/" "${BASE_DIR}/test-driver.yaml" >"${CSI_PROW_TEST_DRIVER}" fi