about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJairo Llopis <yajo.sk8@gmail.com>2023-01-23 08:33:31 +0000
committerJairo Llopis <yajo.sk8@gmail.com>2023-01-23 08:33:31 +0000
commit6f51b1834ab5c3227473efd6f7044e75121aca6a (patch)
treeaff52fec3dad7c9da3dfab309fb9b961f69081f1
parentea35ef77d3213470a68ade9d5cb0be9cf022c9d6 (diff)
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
-rw-r--r--pkgs/development/tools/operator-sdk/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/tools/operator-sdk/default.nix b/pkgs/development/tools/operator-sdk/default.nix
index b1d8e5065f28b..3b38cc97e6b84 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"
   ];