mirror of
https://abf.rosa.ru/djam/kubectl-ice.git
synced 2025-02-23 17:42:48 +00:00
Imported from SRPM
This commit is contained in:
commit
9039762673
2 changed files with 45 additions and 0 deletions
2
.abf.yml
Normal file
2
.abf.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
sources:
|
||||||
|
kubectl-ice-0.2.10.tar.gz: 0c2be851d145f67a22e23c435f2d6763062b52c4
|
43
kubectl-ice.spec
Normal file
43
kubectl-ice.spec
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
%define debug %nil
|
||||||
|
%define debug_package %nil
|
||||||
|
|
||||||
|
Name: kubectl-ice
|
||||||
|
Version: 0.2.10
|
||||||
|
Release: 1
|
||||||
|
Summary: A kubectl plugin view advanced configuration of all containers
|
||||||
|
URL: https://github.com/NimbleArchitect/kubectl-ice
|
||||||
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
License: ASL 2.0
|
||||||
|
Group: Development/Other
|
||||||
|
BuildRequires: go
|
||||||
|
BuildRequires: git-core
|
||||||
|
BuildRequires: upx
|
||||||
|
|
||||||
|
%description
|
||||||
|
A kubectl plugin that allows you to easily view advanced
|
||||||
|
configuration of all containers that are running inside
|
||||||
|
pods, I created it so I could peer inside the pods and
|
||||||
|
see the details of the containers that are inside
|
||||||
|
running pods and then extended it so all containers
|
||||||
|
could be viewed at once.
|
||||||
|
|
||||||
|
ice lists detailed information about the containers present
|
||||||
|
inside a pod, useful for trouble-shooting multi container
|
||||||
|
issues. You can view volume, image, port and executable
|
||||||
|
configurations, along with current cpu and memory metrics
|
||||||
|
all at the container level (requires metrics server)
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
%make bin
|
||||||
|
upx bin/%{name}
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -Dm0755 bin/%{name} %{buildroot}%{_bindir}/%{name}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc README.md LICENSE docs
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
|
Loading…
Add table
Reference in a new issue