File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1216,14 +1216,16 @@ function Verify-WorkerServices {
1216
1216
Log_Todo " run more verification commands."
1217
1217
}
1218
1218
1219
- # Downloads crictl.exe and installs it in $env:NODE_DIR.
1219
+ # Downloads the Windows crictl package and installs its contents (e.g.
1220
+ # crictl.exe) in $env:NODE_DIR.
1220
1221
function DownloadAndInstall-Crictl {
1221
1222
if (-not (ShouldWrite- File ${env: NODE_DIR} \crictl.exe )) {
1222
1223
return
1223
1224
}
1224
- $CRI_TOOLS_GCS_BUCKET = " k8s-artifacts-cri-tools"
1225
- $url = (' https://storage.googleapis.com/$CRI_TOOLS_GCS_BUCKET/release/' +
1226
- $CRICTL_VERSION + ' /crictl-' + $CRICTL_VERSION + ' -windows-amd64.tar.gz' )
1225
+ $CRI_TOOLS_GCS_BUCKET = ' k8s-artifacts-cri-tools'
1226
+ $url = (' https://storage.googleapis.com/' + $CRI_TOOLS_GCS_BUCKET +
1227
+ ' /release/' + $CRICTL_VERSION + ' /crictl-' + $CRICTL_VERSION +
1228
+ ' -windows-amd64.tar.gz' )
1227
1229
MustDownload- File `
1228
1230
- URLs $url `
1229
1231
- OutFile ${env: NODE_DIR} \crictl.tar.gz `
You can’t perform that action at this time.
0 commit comments