Bundle Download Fails Using the Bundle Transfer Utility Tool in SDDC Manager
search cancel

Bundle Download Fails Using the Bundle Transfer Utility Tool in SDDC Manager

book

Article ID: 409759

calendar_today

Updated On:

Products

VMware Cloud Foundation

Issue/Introduction

When executing the lcm-bundle-transfer-util command with the -sddcMgrVersion option and specifying an empty --outputDirectory folder, the command fails to complete successfully.
The following error message is displayed:
"Unable to fetch index file from the depot, this is needed to fetch the bundles information {}."

This prevents the utility from retrieving the required bundle information and performing the bundle transfer operation.

Environment

VMware Cloud Foundation Download Tool 9.x

VMware Cloud Foundation 5.x

Cause

The bundle transfer utility fails because the specified --outputDirectory is empty, causing the utility to be unable to fetch the index file from the depot.

Resolution

Create a tmp folder inside the specified --outputDirectory path, then re-run the lcm-bundle-transfer-util command. This allows the utility to successfully fetch the index file and proceed with the bundle transfer.

For Reference:

  1. Suppose the intended command is: lcm-bundle-transfer-util --sddcMgrVersion 5.2.1.2 --outputDirectory /home/admin/sddc-bundles

  2. If the folder /home/admin/sddc-bundles is empty, the command fails.

  3. To resolve the issue, manually create a tmp folder inside the output directory: mkdir -p /home/admin/sddc-bundles/tmp

  4. Re-run the command: lcm-bundle-transfer-util --sddcMgrVersion 5.2.1.2 --outputDirectory /home/admin/sddc-bundles

  5. The utility now succeeds in fetching the index file and downloading the required bundles.

Additional Information