about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-12-09 21:14:32 +0100
committerGitHub <noreply@github.com>2020-12-09 21:14:32 +0100
commit02e058ed09a623b58d10080b5cb864b7952e2a69 (patch)
tree635f73abf966990459ac97b60ae0e62b83961c9f /pkgs/applications/networking/cluster
parentc2756603f5f1714b9f06dcca218f9a19a4654da9 (diff)
parent5ca87dcf7315626f2e9da7e6127e19463c5c2962 (diff)
downloadnixlib-02e058ed09a623b58d10080b5cb864b7952e2a69.tar
nixlib-02e058ed09a623b58d10080b5cb864b7952e2a69.tar.gz
nixlib-02e058ed09a623b58d10080b5cb864b7952e2a69.tar.bz2
nixlib-02e058ed09a623b58d10080b5cb864b7952e2a69.tar.lz
nixlib-02e058ed09a623b58d10080b5cb864b7952e2a69.tar.xz
nixlib-02e058ed09a623b58d10080b5cb864b7952e2a69.tar.zst
nixlib-02e058ed09a623b58d10080b5cb864b7952e2a69.zip
Merge pull request #106423 from euank/k3s-update-1.19.4
k3s: 1.19.2+k3s1 -> 1.19.4+k3s2
Diffstat (limited to 'pkgs/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/k3s/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/networking/cluster/k3s/default.nix b/pkgs/applications/networking/cluster/k3s/default.nix
index 04dd58502093..629f11865bbc 100644
--- a/pkgs/applications/networking/cluster/k3s/default.nix
+++ b/pkgs/applications/networking/cluster/k3s/default.nix
@@ -43,9 +43,9 @@ with lib;
 # Those pieces of software we entirely ignore upstream's handling of, and just
 # make sure they're in the path if desired.
 let
-  k3sVersion = "1.19.2+k3s1";     # k3s git tag
+  k3sVersion = "1.19.4+k3s2";     # k3s git tag
   traefikChartVersion = "1.81.0"; # taken from ./scripts/download at the above k3s tag
-  k3sRootVersion = "0.6.0-rc3";   # taken from ./scripts/download at the above k3s tag
+  k3sRootVersion = "0.7.1";       # taken from ./scripts/download at the above k3s tag
   k3sCNIVersion = "0.8.6-k3s1";   # taken from ./scripts/version.sh at the above k3s tag
   # bundled into the k3s binary
   traefikChart = fetchurl {
@@ -63,8 +63,8 @@ let
   # k3s binary.
   k3sRoot = fetchzip {
     # Note: marked as apache 2.0 license
-    url = "https://github.com/rancher/k3s-root/releases/download/v${k3sRootVersion}/k3s-root-amd64.tar";
-    sha256 = "0xj3dcqawpzyzmz545iwh151krzbs9csnzg3zfl74lkv2kxgidk6";
+    url = "https://github.com/k3s-io/k3s-root/releases/download/v${k3sRootVersion}/k3s-root-amd64.tar";
+    sha256 = "1wjg54816plbdwgv0dibq6dzmcakcmx0wiqijvr4f3gsxgk59zwf";
     stripRoot = false;
   };
   k3sPlugins = buildGoPackage rec {
@@ -92,10 +92,10 @@ let
   # Grab this separately from a build because it's used by both stages of the
   # k3s build.
   k3sRepo = fetchgit {
-    url = "https://github.com/rancher/k3s";
+    url = "https://github.com/k3s-io/k3s";
     rev = "v${k3sVersion}";
     leaveDotGit = true; # ./scripts/version.sh depends on git
-    sha256 = "1hbnarchs9w52w061bvfjvssdh7ycnxa04camjwkcx8vr0k804h4";
+    sha256 = "1qxjdgnq8mf54760f0vngcqa2y3b048pcmfsf1g593b2ij1kg1zi";
   };
   # Stage 1 of the k3s build:
   # Let's talk about how k3s is structured.