Skip to content

Commit

Permalink
deploy: fix script for distributed provisioning
Browse files Browse the repository at this point in the history
The introduction of sed had input/output backwards.
  • Loading branch information
pohly committed Apr 15, 2021
1 parent 61b5d11 commit 79794b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/kubernetes-distributed/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 79794b6

Please sign in to comment.