2022-02-19 08:48:33 +00:00
|
|
|
{ buildGoModule, lib, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "argo-rollouts";
|
2024-08-13 20:53:31 +01:00
|
|
|
version = "1.7.2";
|
2022-02-19 08:48:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "argoproj";
|
|
|
|
repo = "argo-rollouts";
|
|
|
|
rev = "v${version}";
|
2024-08-13 20:53:31 +01:00
|
|
|
sha256 = "sha256-KljhBI7vNqQVV0UeFRXfdan1gEiwS1CwokgWnJ1RR5Q=";
|
2022-02-19 08:48:33 +00:00
|
|
|
};
|
|
|
|
|
2024-06-16 23:37:24 +01:00
|
|
|
vendorHash = "sha256-38BLPNc6en70+UxlldmrwtRTMRLh/fCPL6FtuA2ODGM=";
|
2022-02-19 08:48:33 +00:00
|
|
|
|
|
|
|
# Disable tests since some test fail because of missing test data
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
subPackages = [ "cmd/rollouts-controller" "cmd/kubectl-argo-rollouts" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Kubernetes Progressive Delivery Controller";
|
|
|
|
homepage = "https://github.com/argoproj/argo-rollouts/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ psibi ];
|
|
|
|
};
|
|
|
|
}
|