From ee635d4645126d0821e75fe71b4e56ec7e119eaa Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 29 Nov 2021 18:53:54 +0300 Subject: chore(ops/modules): Configure besadii call sites to load config 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 --- ops/modules/tvl-buildkite.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'ops/modules/tvl-buildkite.nix') 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 = { -- cgit 1.4.1