Error "10017" in storage occurs during the upgrade of the AS cluster

During the AS cluster upgrade, an error occurs stating - 10017 : Could not load image image tar /opt/UipathAutomationSuite/tmp/sf_installer/readiness-images/images.tar


Issue:

During the AS cluster upgrade, an error occurs stating - 10017 : Could not load image image tar /opt/UipathAutomationSuite/tmp/sf_installer/readiness-images/images.tar



Resolution:

Check Disk Space: Use the df command to monitor the available disk space on your system:

  1. df -h - This will display information about the available disk space in the specified directory.
Navigate to the Directory: cd /opt/UiPathAutomationSuite and run below command :
df -h /opt/UiPathAutomationSuite


Output

image.png
In this output, the available storage is more ample; however, in case of errors, it would indicate less.

  1. du -h - This command displays the disk utilization of the specified directory and subdirectories, excluding files. If larger-sized directories are identified, further investigation can be conducted to identify items that can be removed.


Run below command:
du -h --max-depth=1 /opt/UiPathAutomationSuite


Output

image.png
In this example, there are only a few items; however, within the impacted cluster, there might be items that can be easily removed or moved to any other directory.

  1. To list the files in descending order, run the below command:
ls -l --block-size=K | sort -k5,5hr



Output

image.pngIn this example, a file of approximately 2MB (1884kb to be exact) has been deliberately placed, treated as the offender, and will be removed.

  1. Run below command to remove the offender file:
rm -rf

  1. Then verify if the file is removed by running the same command again (or even a simple ll would show it):

ls -l --block-size=K | sort -k5,5hr


Output

image.png