summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorTristan Gosselin-Hane <starcraft66@gmail.com>2021-07-22 14:25:44 -0400
committerTristan Gosselin-Hane <starcraft66@gmail.com>2021-07-22 14:25:44 -0400
commit4290a48b95ddf437745f19cacab9e60e31f8f84c (patch)
tree6766ca7a6e7b43f3b3275b7f1ae7b947affc962d /pkgs/applications
parenteed26c83ce6f2ede073694c246f10d69fd066bcc (diff)
downloadnixpkgs-4290a48b95ddf437745f19cacab9e60e31f8f84c.tar
nixpkgs-4290a48b95ddf437745f19cacab9e60e31f8f84c.tar.gz
nixpkgs-4290a48b95ddf437745f19cacab9e60e31f8f84c.tar.bz2
nixpkgs-4290a48b95ddf437745f19cacab9e60e31f8f84c.tar.lz
nixpkgs-4290a48b95ddf437745f19cacab9e60e31f8f84c.tar.xz
nixpkgs-4290a48b95ddf437745f19cacab9e60e31f8f84c.tar.zst
nixpkgs-4290a48b95ddf437745f19cacab9e60e31f8f84c.zip
assign-lb-ip: init at 2.2.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/assign-lb-ip/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/assign-lb-ip/default.nix b/pkgs/applications/networking/cluster/assign-lb-ip/default.nix
new file mode 100644
index 00000000000..f0c06fa181a
--- /dev/null
+++ b/pkgs/applications/networking/cluster/assign-lb-ip/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "assign-lb-ip";
+  version = "2.2.0";
+
+  src = fetchFromGitHub {
+    owner = "Nordix";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-PkMXjFP2brULCnD6mGz9wCufMpiwsmulDpINiwmkeys=";
+  };
+
+  vendorSha256 = "sha256-j9SweQq45sYk0lH6zkFrmWRlVhhMO8rLJGQxS6smAVw=";
+
+  meta = with lib; {
+    description = "Assigns loadBalancerIP address to a Kubernetes service for testing purposes";
+    homepage    = "https://github.com/Nordix/assign-lb-ip";
+    license     = licenses.asl20;
+    maintainers = [ maintainers.starcraft66 ];
+  };
+}