Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [HTCondor-users] START = (JobUniverse == docker)
- Date: Mon, 9 Dec 2019 21:27:59 +0000
- From: Todd Tannenbaum <tannenba@xxxxxxxxxxx>
- Subject: 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