diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-12-19T02·35-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-19T12·58+0000 |
commit | 7f593781f3f2c8f0dc2446c11cf3f664f8fb8af4 (patch) | |
tree | 972c9a44dd177e4847d3cabf3f5ae79793333c86 /ops | |
parent | 23397763a77951f4a3c19ec64b3907139584491f (diff) |
feat(whitby): Add buildkite agents to docker group r/3302
I'd like to be able to run extra CI steps that include running docker containers (to integration test things like webapps that connect to a database). To do this the buildkite agents themselves need permission to do docker things. Change-Id: I3c9a488708f0e12a508754ac41f04148ca7aedac Reviewed-on: https://cl.tvl.fyi/c/depot/+/4408 Tested-by: BuildkiteCI Autosubmit: grfn <grfn@gws.fyi> Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'ops')
-rw-r--r-- | ops/modules/tvl-buildkite.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/modules/tvl-buildkite.nix b/ops/modules/tvl-buildkite.nix index 20f8d3bbe492..aaeb5a0f7554 100644 --- a/ops/modules/tvl-buildkite.nix +++ b/ops/modules/tvl-buildkite.nix @@ -63,7 +63,7 @@ in { value = { isSystemUser = true; group = lib.mkForce "buildkite-agents"; - extraGroups = [ name ]; + extraGroups = [ name "docker" ]; }; }) agents); }; |