Skip to content

Commit

Permalink
add permissions to edit cr files
Browse files Browse the repository at this point in the history
  • Loading branch information
matancarmeli7 committed Jul 8, 2021
1 parent 683a5a2 commit 90add39
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/ci/deploy_driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ docker exec -i $kind_node_name apt-get update
docker exec -i $kind_node_name apt -y install open-iscsi

cd $(dirname $cr_file)
yq eval ".spec.controller.repository |= env(controller_repository_for_test)" $(basename $cr_file) -i
yq eval ".spec.controller.tag |= env(driver_images_tag)" $(basename $cr_file) -i
yq eval ".spec.node.repository |= env(node_repository_for_test)" $(basename $cr_file) -i
yq eval ".spec.node.tag |= env(driver_images_tag)" $(basename $cr_file) -i
sudo yq eval ".spec.controller.repository |= env(controller_repository_for_test)" $(basename $cr_file) -i
sudo yq eval ".spec.controller.tag |= env(driver_images_tag)" $(basename $cr_file) -i
sudo yq eval ".spec.node.repository |= env(node_repository_for_test)" $(basename $cr_file) -i
sudo yq eval ".spec.node.tag |= env(driver_images_tag)" $(basename $cr_file) -i
cd -

cd $(dirname $operator_file)
Expand Down

0 comments on commit 90add39

Please sign in to comment.