Skip to content

Commit

Permalink
bugfix: properly update the multibench remotehosts template
Browse files Browse the repository at this point in the history
- it was initially cloned from the remotehost endpoint template (like
  the reset of the remotehosts templates) but this one fell through
  the cracks and was not updated
  • Loading branch information
k-rister committed May 1, 2024
1 parent 741670d commit 95dcb92
Showing 1 changed file with 33 additions and 45 deletions.
78 changes: 33 additions & 45 deletions util/crucible-ci/multi.remotehosts.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,51 +65,39 @@
"description": "mulitbench-remotehosts-run-file-json"
},
"endpoints": [
{
"type": "remotehost",
"controller-ip": "CONTROLLER_IP",
"host": "CI_ENDPOINT_HOST",
"user": "CI_ENDPOINT_USER",
"server": "1-2",
"client": "1-2",
"config": [
{
"targets": [
{ "role": "client", "ids": "1" },
{ "role": "server", "ids": "1" }
],
"settings": {
"osruntime": "podman"
}
},
{
"targets": [
{ "role": "client", "ids": "2" },
{ "role": "server", "ids": "2" }
],
"settings": {
"osruntime": "chroot"
}
}
]
},
{
"type": "remotehost",
"controller-ip": "CONTROLLER_IP",
"host": "CI_ENDPOINT_HOST",
"user": "CI_ENDPOINT_USER",
"profiler": "1",
"config": [
{
"targets": [
{ "role": "profiler", "ids": "1" }
],
"settings": {
"osruntime": "chroot"
}
}
]
}
{
"type": "remotehosts",
"settings": {
"user": "CI_ENDPOINT_USER",
"controller-ip-address": "CONTROLLER_IP"
},
"remotes": [
{
"engines": [
{ "role": "client", "ids": [ 1 ] },
{ "role": "server", "ids": [ 1 ] }
],
"config": {
"host": "CI_ENDPOINT_HOST",
"settings": {
"osruntime": "podman"
}
}
},
{
"engines": [
{ "role": "client", "ids": [ 2 ] },
{ "role": "server", "ids": [ 2 ] }
],
"config": {
"host": "CI_ENDPOINT_HOST",
"settings": {
"osruntime": "chroot"
}
}
}
]
}
],
"run-params": {
"num-samples": 1,
Expand Down

0 comments on commit 95dcb92

Please sign in to comment.