We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a13227 commit d6810a2Copy full SHA for d6810a2
plugins/integrations/kubernetes-service/src/main/resources/script/deploy-csi-driver
@@ -30,10 +30,10 @@ else
30
"https://github.com/cloudstack/cloudstack-csi-driver/releases/download/v3.0.0/snapshot-crds.yaml"
31
"https://github.com/cloudstack/cloudstack-csi-driver/releases/download/v3.0.0/manifest.yaml"
32
)
33
- for url in "${URLS[@]}"; do
+ for url in "${CSI_URLS[@]}"; do
34
filename=$(basename "$url")
35
36
- curl -sSL ${url} -o ${working_dir}/${filename}
+ curl -sSL ${url} -o ${TARGET_DIR}/${filename}
37
if [ $? -ne 0 ]; then
38
echo "Unable to connect to the internet to download the relevant files to install and setup CloudStack CSI driver"
39
exit 1
0 commit comments