如何在中间层作业中添加放置约束?我知道有一种gui方法可以将其添加到服务中,我需要的是如何对作业执行相同的操作?
yebdmbv41#
这是可能的,但可能不会在gui中公开。请参阅自述文件中的以下示例
{ "id": "sample-job", "description": "A sample job that sleeps", "run": { "cmd": "sleep 1000", "cpus": 0.01, "mem": 32, "disk": 0, "placement": { "constraints": [ { "attribute": "hostname", "operator": "LIKE", "value": "<host-name>" } ] } }, "schedules": [ { "id": "sample-schedule", "enabled": true, "cron": "0 0 * * *", "concurrencyPolicy": "ALLOW" } ] }
1条答案
按热度按时间yebdmbv41#
这是可能的,但可能不会在gui中公开。请参阅自述文件中的以下示例