From 6f51b1834ab5c3227473efd6f7044e75121aca6a Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Mon, 23 Jan 2023 08:33:31 +0000 Subject: [PATCH] operator-sdk: build all binaries Currently the repo provides 3 binaries. The 2 that were missing are used in upstream docker images. But to use dockerTools instead, these need to be packaged with nix! @moduon MT-1075 --- pkgs/development/tools/operator-sdk/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/operator-sdk/default.nix b/pkgs/development/tools/operator-sdk/default.nix index b1d8e5065f28..3b38cc97e6b8 100644 --- a/pkgs/development/tools/operator-sdk/default.nix +++ b/pkgs/development/tools/operator-sdk/default.nix @@ -29,6 +29,8 @@ buildGoModule rec { doCheck = false; subPackages = [ + "cmd/ansible-operator" + "cmd/helm-operator" "cmd/operator-sdk" ];