Linked Questions

Popular Questions

I have a scenario, where we are transferring multiple files from openshift to a different server. It's in Terabytes.

Right now using oc client. Tried few options.

oc cp podname:source_path target_path

oc rsync --exclude="*.txt",".log" podname:source_path target_path

It's running for hours.

Any other better approach to handle this scenario?

Related Questions