kops: add 1.31, 1.32, drop 1.27, 1.28, 1.29, set default 1.33

+15 -20
+2
nixos/doc/manual/release-notes/rl-2511.section.md
··· 164 164 165 165 - `programs.goldwarden` has been removed, due to the software not working with newer versions of the Bitwarden and Vaultwarden servers, as well as it being abandoned upstream. 166 166 167 + - The default `kops` version is now 1.33.0 and versions 1.30 and older have been dropped. See [Upgrading Kubernetes](https://kops.sigs.k8s.io/tutorial/upgrading-kubernetes/) for instructions on how to update kOps. 168 + 167 169 - `Prosody` has been updated to major release 13 which removed some obsoleted modules and brought a couple of major and breaking changes: 168 170 - The `http_files` module is now disabled by default because it now requires `http_files_dir` to be configured. 169 171 - The `vcard_muc` module has been removed and got replaced by the inbuilt `muc_vcard` module.
+9 -15
pkgs/applications/networking/cluster/kops/default.nix
··· 71 71 rec { 72 72 mkKops = generic; 73 73 74 - kops_1_27 = mkKops rec { 75 - version = "1.27.1"; 76 - sha256 = "sha256-WV+0380yj8GHckY4PDM3WspbZ/YuYZOAQEMd2ygEOjo="; 77 - rev = "v${version}"; 78 - }; 79 - 80 - kops_1_28 = mkKops rec { 81 - version = "1.28.7"; 82 - sha256 = "sha256-rTf7+w/o8MGSBKV9wCzZOEI0v31exZhOJpRABeF/KyI="; 74 + kops_1_31 = mkKops rec { 75 + version = "1.31.0"; 76 + sha256 = "sha256-q9megrNXXKJ/YqP/fjPHh8Oji4dPK5M3HLHa+ufwRAM="; 83 77 rev = "v${version}"; 84 78 }; 85 79 86 - kops_1_29 = mkKops rec { 87 - version = "1.29.2"; 88 - sha256 = "sha256-SRj0x9N+yfTG/UL/hu1ds46Zt6d5SUYU0PA9lPHO6jQ="; 80 + kops_1_32 = mkKops rec { 81 + version = "1.32.1"; 82 + sha256 = "sha256-nQKeTDajtUffPBhPrPuaJ+1XWgLDUltwDQDZHkylys4="; 89 83 rev = "v${version}"; 90 84 }; 91 85 92 - kops_1_30 = mkKops rec { 93 - version = "1.30.4"; 94 - sha256 = "sha256-f+VdgQj6tHWrn+LG6qkArjcADYfpKjuOp+bU0BTYsWY="; 86 + kops_1_33 = mkKops rec { 87 + version = "1.33.0"; 88 + sha256 = "sha256-VnnKWcU83yqsKW54Q1tr99/Ln8ppMyB7GLl70rUFGDY="; 95 89 rev = "v${version}"; 96 90 }; 97 91 }
+4 -5
pkgs/top-level/all-packages.nix
··· 14812 14812 # Exceptions are versions that we need to keep to allow upgrades from older NixOS releases 14813 14813 inherit (callPackage ../applications/networking/cluster/kops { }) 14814 14814 mkKops 14815 - kops_1_27 14816 - kops_1_28 14817 - kops_1_29 14818 - kops_1_30 14815 + kops_1_31 14816 + kops_1_32 14817 + kops_1_33 14819 14818 ; 14820 - kops = kops_1_29; 14819 + kops = kops_1_33; 14821 14820 14822 14821 lilypond = callPackage ../misc/lilypond { }; 14823 14822