kops: default to 1.21.0, drop 1.18 (#129472)

wip/nixpkgs-raku
Eric Bailey 3 years ago committed by GitHub
parent 9488ed9685
commit dafb3dfc48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
  2. 1
      nixos/doc/manual/release-notes/rl-2111.section.md
  3. 11
      pkgs/applications/networking/cluster/kops/default.nix
  4. 4
      pkgs/top-level/all-packages.nix

@ -20,6 +20,12 @@
PHP now defaults to PHP 8.0, updated from 7.4.
</para>
</listitem>
<listitem>
<para>
kOps now defaults to 1.21.0, which uses containerd as the
default runtime.
</para>
</listitem>
</itemizedlist>
</section>
<section xml:id="sec-release-21.11-new-services">

@ -7,6 +7,7 @@ In addition to numerous new and upgraded packages, this release has the followin
## Highlights {#sec-release-21.11-highlights}
- PHP now defaults to PHP 8.0, updated from 7.4.
- kOps now defaults to 1.21.0, which uses containerd as the default runtime.
## New Services {#sec-release-21.11-new-services}

@ -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}";
};
}

@ -30979,11 +30979,11 @@ in
# Exceptions are versions that we need to keep to allow upgrades from older NixOS releases
inherit (callPackage ../applications/networking/cluster/kops {})
mkKops
kops_1_18
kops_1_19
kops_1_20
kops_1_21
;
kops = kops_1_20;
kops = kops_1_21;
lguf-brightness = callPackage ../misc/lguf-brightness { };

Loading…
Cancel
Save