diff options
author | Vincent Ambo <mail@tazj.in> | 2021-11-29T15·53+0300 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-12-02T10·10+0300 |
commit | ee635d4645126d0821e75fe71b4e56ec7e119eaa (patch) | |
tree | 7f6b9dd7cf64a6a803a8b8a26aa22348d22c41ba /ops/modules/tvl-buildkite.nix | |
parent | 168114df525f7f9b5fe5377e0a66e213b779a723 (diff) |
chore(ops/modules): Configure besadii call sites to load config r/3134
On whitby, the besadii config will live in /etc/secrets/besadii.json. This CL updates the call sites to pass this config path to besadii so that it can load Sourcegraph configuration. Change-Id: Ia139b9fa3b827e7a5f2386214390acc6fe19a75a
Diffstat (limited to 'ops/modules/tvl-buildkite.nix')
-rw-r--r-- | ops/modules/tvl-buildkite.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ops/modules/tvl-buildkite.nix b/ops/modules/tvl-buildkite.nix index 05a5e9b5e7f6..de1497010077 100644 --- a/ops/modules/tvl-buildkite.nix +++ b/ops/modules/tvl-buildkite.nix @@ -6,11 +6,16 @@ let agents = lib.range 1 cfg.agentCount; description = "Buildkite agents for TVL"; + besadiiWithConfig = pkgs.writeShellScript "besadii-whitby" '' + export BESADII_CONFIG=/etc/secrets/besadii.json + exec ${depot.ops.besadii}/bin/besadii + ''; + # All Buildkite hooks are actually besadii, but it's being invoked # with different names. buildkiteHooks = pkgs.runCommandNoCC "buildkite-hooks" {} '' mkdir -p $out/bin - ln -s ${depot.ops.besadii}/bin/besadii $out/bin/post-command + ln -s ${besadiiWithConfig} $out/bin/post-command ''; in { options.services.depot.buildkite = { |