Skip to content

Commit d6810a2

Browse files
committed
fix variables
1 parent 7a13227 commit d6810a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/integrations/kubernetes-service/src/main/resources/script/deploy-csi-driver

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ else
3030
"https://github.com/cloudstack/cloudstack-csi-driver/releases/download/v3.0.0/snapshot-crds.yaml"
3131
"https://github.com/cloudstack/cloudstack-csi-driver/releases/download/v3.0.0/manifest.yaml"
3232
)
33-
for url in "${URLS[@]}"; do
33+
for url in "${CSI_URLS[@]}"; do
3434
filename=$(basename "$url")
3535

36-
curl -sSL ${url} -o ${working_dir}/${filename}
36+
curl -sSL ${url} -o ${TARGET_DIR}/${filename}
3737
if [ $? -ne 0 ]; then
3838
echo "Unable to connect to the internet to download the relevant files to install and setup CloudStack CSI driver"
3939
exit 1

0 commit comments

Comments
 (0)