[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [HTCondor-users] running executable that exists only in the container



On 10/2/23 08:37, Matthew T West via HTCondor-users wrote:
Hi Greg,

First, thanks for noting this flag! I figured there had to be something like it.


The submit file is below:

universeÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ = container
container_imageÂÂÂÂÂÂÂÂ = ./lolcow_latest.sif
transfer_executableÂÂÂ = false
executableÂÂÂÂÂ = cowsay
argumentsÂÂÂ Â = moo
outputÂÂÂÂÂÂÂÂÂÂÂÂ = job.out
errorÂÂÂÂÂÂÂÂÂÂÂÂÂÂ = job.err
logÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ = job.log
request_cpusÂÂ = 1
request_memory = 1024M
request_diskÂÂ = 1024M


Try forcing file transfer on, by setting

should_transfer_files = yes

when_to_transfer_out = on_exit


and see if that work.


-greg