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

Re: [HTCondor-users] START = (JobUniverse == docker)



On 12/9/2019 3:16 PM, Dimitri Maziuk via HTCondor-users wrote:
> Hi all,
> 
> quick question: if I wanted to make sure only docker universe jobs land
> on a specific execute node, would setting
> 
> START = (JobUniverse == 5)
> 
> work, or is there a better way?
> 

I do not think the above is fully correct, as Docker jobs are actually a 
subset of vanilla universe....

I recommend the following in condor_config:

START = (JobUniverse == 5) && (WantDocker =?= True)

Hope the above helps,
Todd