Skip to content

Commit

Permalink
Merge pull request #7286 from dolthub/db/correctness-config
Browse files Browse the repository at this point in the history
[no-release-notes] /.github/scripts/sql-correctness/get-dolt-correctness-job-json.sh: configure job to run on dedicated host
  • Loading branch information
coffeegoddd authored Jan 10, 2024
2 parents 84b9180 + 42df3f0 commit 668426e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/scripts/sql-correctness/get-dolt-correctness-job-json.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,18 @@ echo '
]
}
],
"restartPolicy": "Never"
"restartPolicy": "Never",
"nodeSelector": {
"sql-correctness-worker": "true"
},
"tolerations": [
{
"effect": "NoSchedule",
"key": "dedicated",
"operator": "Equal",
"value": "sql-correctness-worker"
}
]
}
}
}
Expand Down

0 comments on commit 668426e

Please sign in to comment.