Uploading large log files is an issue when opening StarlingX launchpads.
Running "collect" can often generate a tar file in excess of 500MB.
Launchpads rejects uploads greater than (approximately) 30 or 40 MB.
Current solution is to use "split" to chop up a large tar / log file, upload the smaller individual files and then reconstruct them to the original tar, ex:
split -b 29M ALL_NODES_20190422.191652.tar ALL_NODES_20190422.191652.tar.part
cat ALL_NODES_20190422.191652.tar.part* > ALL_NODES_20190422.191652.tar
The above method is time consuming; both - for the reporter and the assignee.
Would anyone have a solution for uploading large log files for LPs? Do we have any shared project space that could be used for this purpose - so we can upload a large file in one shot and then simply link to it in LP ?
Regards,