You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I'm not familiar with jsonnet I am probably just holding this wrong... I have figured out that I need to override the clusters variable in bb_clientd.jsonnet to include my RBE endpoint.
This works when run from source, but when run as a systemd service that does not give me access to the config directly, I am not sure what I need to put into ~/.config/bb_clientd.jsonnet.
Thanks in advance,
The text was updated successfully, but these errors were encountered:
Yeah, that's a bit annoying. Right now you need to copy the entire default configuration to ~/.config/bb_clientd.jsonnet and adjust that. Ideally we'd make it so that you could override just that part:
local defaults = import'bb_clientd_defaults.jsonnet';
defaults {
clusters:: ['hostname-a', 'hostname-b'],
}
Unfortunately, that's not supported (yet). Patches are welcome!
Hey!
As I'm not familiar with jsonnet I am probably just holding this wrong... I have figured out that I need to override the
clusters
variable inbb_clientd.jsonnet
to include my RBE endpoint.This works when run from source, but when run as a systemd service that does not give me access to the config directly, I am not sure what I need to put into
~/.config/bb_clientd.jsonnet
.Thanks in advance,
The text was updated successfully, but these errors were encountered: