Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ansible/host_vars/a-fsn-de.m.voidlinux.org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ buildworker_archs:
- armv7l
- armv6l

nomad_meta:
builder: glibc

nomad_host_volumes:
- name: void-packages
path: /data/void-packages
Expand Down
8 changes: 8 additions & 0 deletions ansible/host_vars/a-hel-fi.m.voidlinux.org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ network_static_interfaces:
sshd_AllowGroups:
- build-ops

buildworker_archs:
- x86_64-musl
- armv7l-musl
- armv6l-musl

nomad_meta:
builder: musl

nomad_host_volumes:
- name: terrastate
path: /nomad/terrastate
Expand Down
3 changes: 3 additions & 0 deletions ansible/host_vars/b-fsn-de.m.voidlinux.org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ buildworker_archs:
- aarch64
- aarch64-musl

nomad_meta:
builder: musl

nomad_host_volumes:
- name: ccache
path: /hostdir/ccache
Expand Down
8 changes: 7 additions & 1 deletion services/nomad/monitoring/repo_exporter.nomad
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ job "repo-exporter" {
namespace = "monitoring"
datacenters = ["VOID"]

affinity {
attribute = "${meta.builder}"
value = ""
weight = 100
}

group "exporter" {
network {
mode = "bridge"
Expand All @@ -28,7 +34,7 @@ job "repo-exporter" {
driver = "docker"

config {
image = "ghcr.io/void-linux/repo-exporter:v0.1.1"
image = "ghcr.io/void-linux/repo-exporter:v0.1.2"
}

resources {
Expand Down