Merge pull request #246651 from kirillrdy/kuma2

kuma,kuma-cp,kuma-dp,kuma-experimental,kumactl: 1.8.1 → 2.3.1
This commit is contained in:
Mario Rodas 2023-08-26 13:49:46 -05:00 committed by GitHub
commit 7b2d91f548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 11 deletions

View File

@ -9,27 +9,28 @@
, components ? lib.optionals isFull [
"kumactl"
"kuma-cp"
"kuma-prometheus-sd"
"kuma-dp"
]
}:
buildGoModule rec {
inherit pname ;
version = "1.8.1";
tags = lib.optionals enableGateway ["gateway"];
vendorSha256 = "sha256-69uXHvpQMeFwQbejMpfQPS8DDXJyVsnn59WUEJpSeng=";
inherit pname;
version = "2.3.1";
tags = lib.optionals enableGateway [ "gateway" ];
src = fetchFromGitHub {
owner = "kumahq";
repo = "kuma";
rev = version;
sha256 = "sha256-hNfgiMX3aMb8yjXjFKz73MczOeJyOI3Tna/NRSJBSzs=";
hash = "sha256-BayfHBTTqgc0ArD6ux9HOqaZy0GrEpqgDa7zHZtiG2I=";
};
vendorHash = "sha256-St+jGks7ojKrgecmN7UJ9FjGrmjtgEKsunSY+4itUyA=";
# no test files
doCheck = false;
nativeBuildInputs = [installShellFiles] ++ lib.optionals isFull [coredns];
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals isFull [ coredns ];
preBuild = ''
export HOME=$TMPDIR
@ -59,6 +60,7 @@ buildGoModule rec {
meta = with lib; {
description = "Service mesh controller";
homepage = "https://kuma.io/";
changelog = "https://github.com/kumahq/kuma/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ zbioe ];
};

View File

@ -855,6 +855,7 @@ mapAliases ({
kubei = kubeclarity; # Added 2023-05-20
kubeless = throw "kubeless is deprecated and archived by upstream"; # Added 2022-04-05
kubicorn = throw "kubicorn has been dropped due to the lack of maintenance from upstream since 2019"; # Added 2022-05-30
kuma-prometheus-sd = throw "kuma-prometheus-sd has been deprecated upstream"; # Added 2023-07-02
kvm = throw "'kvm' has been renamed to/replaced by 'qemu_kvm'"; # Converted to throw 2022-02-22
### L ###

View File

@ -33345,10 +33345,6 @@ with pkgs;
components = ["kuma-dp"];
pname = "kuma-dp";
};
kuma-prometheus-sd = callPackage ../applications/networking/cluster/kuma {
components = ["kuma-prometheus-sd"];
pname = "kuma-prometheus-sd";
};
kile-wl = callPackage ../applications/misc/kile-wl { };