about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-04 08:51:16 -0500
committerGitHub <noreply@github.com>2020-03-04 08:51:16 -0500
commit2dc478d7a40762619609cc8e9428cc76670f942d (patch)
treeb7feb9a0fba97438273531f9c84d31f2c3d5dc20 /pkgs/applications/networking/cluster
parenta7454c0a18d82d24546f08bf45cf4121bfd83fe3 (diff)
parentd8e58850751bd4ded712d5f6fe9f43f01bdb78a9 (diff)
downloadnixlib-2dc478d7a40762619609cc8e9428cc76670f942d.tar
nixlib-2dc478d7a40762619609cc8e9428cc76670f942d.tar.gz
nixlib-2dc478d7a40762619609cc8e9428cc76670f942d.tar.bz2
nixlib-2dc478d7a40762619609cc8e9428cc76670f942d.tar.lz
nixlib-2dc478d7a40762619609cc8e9428cc76670f942d.tar.xz
nixlib-2dc478d7a40762619609cc8e9428cc76670f942d.tar.zst
nixlib-2dc478d7a40762619609cc8e9428cc76670f942d.zip
Merge pull request #81428 from ngerstle/update-kube3d
kube3d: 1.3.1 -> 1.6.0
Diffstat (limited to 'pkgs/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/kube3d/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/kube3d/default.nix b/pkgs/applications/networking/cluster/kube3d/default.nix
index 7058c009f2dd..c34065bb22cb 100644
--- a/pkgs/applications/networking/cluster/kube3d/default.nix
+++ b/pkgs/applications/networking/cluster/kube3d/default.nix
@@ -2,8 +2,8 @@
 
 buildGoModule rec {
   pname = "kube3d";
-  version = "1.3.1";
-  k3sVersion = "0.9.1";
+  version = "1.6.0";
+  k3sVersion = "1.17.3+k3s1";
 
   goPackagePath = "github.com/rancher/k3d";
 
@@ -11,7 +11,7 @@ buildGoModule rec {
     owner  = "rancher";
     repo   = "k3d";
     rev    = "v${version}";
-    sha256 = "0bdpjnzyxd6mdc1qv0ml89qds6305kn3wmyci2kv6g2y7r7wxvm2";
+    sha256 = "0qjwqqynvgzainq66fpzczgynwk3hv7wzgfy5271fc6mj2k0zz5x";
   };
 
   buildFlagsArray = ''
@@ -21,13 +21,13 @@ buildGoModule rec {
       -X github.com/rancher/k3d/version.K3sVersion=v${k3sVersion}
   '';
 
-  modSha256 = "1qadf3gc2626l4jpad4lzi649nh8if9m6fgs2cf46r1nish16h95";
+  modSha256 = "0c8bfl0hz5cfhi6jzhhylz051jiix6s7s20fn23w7wri4xaqrjn8";
 
   meta = with stdenv.lib; {
     homepage = "https://github.com/rancher/k3d";
     description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container";
     license = licenses.mit;
     platforms = platforms.linux;
-    maintainers = with maintainers; [ kuznero jlesquembre ];
+    maintainers = with maintainers; [ kuznero jlesquembre ngerstle ];
   };
 }