Merge pull request #123539 from 06kellyjac/starboard-octant-plugin
starboard-octant-plugin: 0.10.0 -> 0.10.3
This commit is contained in:
commit
a60df8832d
|
@ -2,26 +2,29 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "starboard-octant-plugin";
|
pname = "starboard-octant-plugin";
|
||||||
version = "0.10.0";
|
version = "0.10.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "aquasecurity";
|
owner = "aquasecurity";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-3BifigdAFuOCrhJRv/w4k7pT4BTHfINuEkeG6zaI0v8=";
|
sha256 = "sha256-9vl068ZTw6Czf+cWQ0k1lU0pqh7P0YZgLguHkk3M918=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-1NTneOGU4R1xzR9hAI9MJWYuYTPgYtLa5vH1H5wyHcM=";
|
vendorSha256 = "sha256-HOvZPDVKZEoL91yyaJRuKThHirY77xlKOtLKARthxn8=";
|
||||||
|
|
||||||
buildFlagsArray = [ "-ldflags=" "-s" "-w" ];
|
preBuild = ''
|
||||||
|
buildFlagsArray+=("-ldflags" "-s -w")
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/aquasecurity/starboard-octant-plugin";
|
||||||
|
changelog = "https://github.com/aquasecurity/starboard-octant-plugin/releases/tag/v${version}";
|
||||||
description = "Octant plugin for viewing Starboard security information";
|
description = "Octant plugin for viewing Starboard security information";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
This is an Octant plugin for Starboard which provides visibility into vulnerability assessment reports for
|
This is an Octant plugin for Starboard which provides visibility into vulnerability assessment reports for
|
||||||
Kubernetes workloads stored as custom security resources.
|
Kubernetes workloads stored as custom security resources.
|
||||||
'';
|
'';
|
||||||
homepage = src.meta.homepage;
|
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ jk ];
|
maintainers = with maintainers; [ jk ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue