kops: add 1.30, update 1.28, drop 1.26

- drop kops_1_26
- keep kops_1_27 for now
- kops_1_28: 1.28.5 -> 1.28.7
- keep kops_1_29 as default while 1.30 is in beta
- init kops_1_30 at 1.30.1
This commit is contained in:
Eric Bailey 2024-09-17 17:52:34 -05:00
parent 87902f3613
commit d71203e97c
2 changed files with 9 additions and 9 deletions

View File

@ -49,12 +49,6 @@ in
rec {
mkKops = generic;
kops_1_26 = mkKops rec {
version = "1.26.6";
sha256 = "sha256-qaehvPgB3phZl/K577hig4G4RxAUi6Im94vXP5ctnWM=";
rev = "v${version}";
};
kops_1_27 = mkKops rec {
version = "1.27.1";
sha256 = "sha256-WV+0380yj8GHckY4PDM3WspbZ/YuYZOAQEMd2ygEOjo=";
@ -62,8 +56,8 @@ rec {
};
kops_1_28 = mkKops rec {
version = "1.28.5";
sha256 = "sha256-spw3lTrp6RlxkTNoZ/3Yz/U2tdvBnwiYORS2QtOSX9k=";
version = "1.28.7";
sha256 = "sha256-rTf7+w/o8MGSBKV9wCzZOEI0v31exZhOJpRABeF/KyI=";
rev = "v${version}";
};
@ -72,4 +66,10 @@ rec {
sha256 = "sha256-SRj0x9N+yfTG/UL/hu1ds46Zt6d5SUYU0PA9lPHO6jQ=";
rev = "v${version}";
};
kops_1_30 = mkKops rec {
version = "1.30.1";
sha256 = "sha256-aj2OnjkXlBEH830RoJiAlhiFfS1zjVoX38PrsgAaB7A=";
rev = "v${version}";
};
}

View File

@ -37779,10 +37779,10 @@ with pkgs;
# Exceptions are versions that we need to keep to allow upgrades from older NixOS releases
inherit (callPackage ../applications/networking/cluster/kops {})
mkKops
kops_1_26
kops_1_27
kops_1_28
kops_1_29
kops_1_30
;
kops = kops_1_29;