mirror of
https://abf.rosa.ru/djam/tetragon.git
synced 2025-02-23 18:02:55 +00:00
Imported from SRPM
This commit is contained in:
commit
adfb812ce6
2 changed files with 53 additions and 0 deletions
2
.abf.yml
Normal file
2
.abf.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
sources:
|
||||
tetragon-0.8.3.tar.gz: 22c78f9179904048fea92826cc247a3112e85fec
|
51
tetragon.spec
Normal file
51
tetragon.spec
Normal file
|
@ -0,0 +1,51 @@
|
|||
%define debug %nil
|
||||
%define debug_package %nil
|
||||
|
||||
Name: tetragon
|
||||
Version: 0.8.3
|
||||
Release: 1
|
||||
Summary: eBPF-based Security Observability and Runtime Enforcement
|
||||
URL: https://github.com/cilium/tetragon
|
||||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
License: ASL 2.0
|
||||
Group: Development/Other
|
||||
BuildRequires: go
|
||||
BuildRequires: upx
|
||||
BuildRequires: git-core
|
||||
|
||||
%description
|
||||
Cilium’s new Tetragon component enables powerful
|
||||
realtime, eBPF-based Security Observability and
|
||||
Runtime Enforcement.
|
||||
|
||||
Tetragon detects and is able to react to
|
||||
security-significant events, such as
|
||||
|
||||
Process execution events
|
||||
System call activity
|
||||
I/O activity including network & file access
|
||||
|
||||
When used in a Kubernetes environment, Tetragon
|
||||
is Kubernetes-aware - that is, it understands
|
||||
Kubernetes identities such as namespaces, pods
|
||||
and so-on - so that security event detection
|
||||
can be configured in relation to individual
|
||||
workloads.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%make tetragon
|
||||
|
||||
# compress binaries
|
||||
upx %{name}
|
||||
|
||||
%install
|
||||
install -Dm0755 %{name} %{buildroot}%{_bindir}/%{name}
|
||||
|
||||
%files
|
||||
%doc README.md LICENSE SECURITY.md docs
|
||||
%{_bindir}/%{name}
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue