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

[HTCondor-users] Worker node should only accept jobs with rhel9



Hello Experts,

I have the following _expression_ in the submit file.Â

requirements = target.osrel == "rhel9"
+Osversion = "rhel9"


On the worker node I have the following START condition to only accept jobs with rhel9 tag. But the job stays in idle state.Â

START = $(START) && (TARGET.Osversion == "rhel9")

If I change the condition to something else like, it works but it will accept all the jobs. I only want to run jobs targeted for rhel9 on rhel9 nodes.Â

START = $(START) && (owner == "myname")

Is this not expected to work? What should I do so that workers only accept the jobs with rhel9 requirement or tag.


Thanks & Regards,
Vikrant Aggarwal