about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kops
diff options
context:
space:
mode:
authorEric Bailey <yurrriq@users.noreply.github.com>2021-07-10 14:44:00 -0500
committerGitHub <noreply@github.com>2021-07-10 19:44:00 +0000
commitdafb3dfc483a1e12017ac9ddf88907d009b3edec (patch)
treeff5e9f767671fe8e374d26e71e3782789f01a8b6 /pkgs/applications/networking/cluster/kops
parent9488ed968585ad1085cda5db66698ba0246c41b8 (diff)
kops: default to 1.21.0, drop 1.18 (#129472)
Diffstat (limited to 'pkgs/applications/networking/cluster/kops')
-rw-r--r--pkgs/applications/networking/cluster/kops/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/kops/default.nix b/pkgs/applications/networking/cluster/kops/default.nix
index 4dc37364e7ba3..54d13f819ab87 100644
--- a/pkgs/applications/networking/cluster/kops/default.nix
+++ b/pkgs/applications/networking/cluster/kops/default.nix
@@ -53,11 +53,6 @@ rec {
 
   mkKops = generic;
 
-  kops_1_18 = mkKops {
-    version = "1.18.2";
-    sha256 = "17na83j6sfhk69w9ssvicc0xd1904z952ad3zzbpha50lcy6nlhp";
-  };
-
   kops_1_19 = mkKops rec {
     version = "1.19.2";
     sha256 = "15csxih1xy8myky37n5dyzp5mc31pc4bq9asaw6zz51mgw8ad5r9";
@@ -69,4 +64,10 @@ rec {
     sha256 = "011ib3xkj6nn7qax8d0ns8y4jhkwwmry1qnzxklvzssaxhmzs557";
     rev = "v${version}";
   };
+
+  kops_1_21 = mkKops rec {
+    version = "1.21.0";
+    sha256 = "sha256-T2i3qpg3GC7yaYCGrN1V5XXrUyT+Ce9Q4aV00gQJ7gM=";
+    rev = "v${version}";
+  };
 }