replace "runner" by "executor" for logs
Albatros default Details

This commit is contained in:
Quentin 2023-03-24 11:37:33 +01:00
parent c1adf1a517
commit 76c59221d1
Signed by: quentin
GPG Key ID: E9602264D639FF68
2 changed files with 3 additions and 7 deletions

View File

@ -2,7 +2,7 @@ job "builder" {
namespace = "ci"
type = "batch"
datacenters = ["neptune", "jupiter", "corrin", "bespin"]
datacenters = ["bespin", "corrin"]
priority = 100
parameterized {
@ -57,6 +57,7 @@ fi
task "executor" {
driver = "docker"
leader = true
config {
image = "nixpkgs/nix:nixos-22.11"
args = [ "/tmp/builder.sh" ]
@ -162,11 +163,6 @@ experimental-features = nix-command flakes
cpu = 1000
memory = 4000
}
lifecycle {
hook = "prestart"
sidecar = true
}
}
}
}

View File

@ -302,7 +302,7 @@ func build(w http.ResponseWriter, r *http.Request) {
allocFS := NomadClient.AllocFS()
scancel := make(chan struct{})
sframe, serr := allocFS.Logs(myAlloc, true, "runner", logFilter, "start", 0, scancel, &nomad.QueryOptions{})
sframe, serr := allocFS.Logs(myAlloc, true, "executor", logFilter, "start", 0, scancel, &nomad.QueryOptions{})
// stream logs to client's browser
build_loop: