I'm copying files from openshift pod to UNIX server. Files are in Giga Bytes size. I'm using oc rsync in Unix server. But, it's using /tmp directory as cache directory while copying. File size is greater than the /tmp directory size. Due to that, I'm getting "no space left on the device"
Is there is any way to bypass /tmp directory cache to different folder or can we totally avoid the cache?
CodePudding user response:
The following worked for me.
export TMPDIR="folder were data should be cached"
oc rsync pod:source_path target_path
Thanks to @Romeo Ninov for pointing me in the right direction.
CodePudding user response:
You can try to set variable TMP
or TEMP
to point other directory with enough space.
I am sure in documentation you will find mentioned the proper variable (if it's not in two above)