blob: ae4297bb36977d4f1f055980b83e78b8d6cd268f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
Name: k9s
Version: 0.27.4
Release: %autorelease
Summary: A Kubernetes CLI To Manage Your Clusters
License: Apache-2.0
URL: https://github.com/derailed/k9s
Source0: https://github.com/derailed/k9s/archive/refs/tags/v%{version}.tar.gz
BuildRequires: golang, make, git
%description
K9s provides a terminal UI to interact with your Kubernetes clusters.
%global debug_package %{nil}
%prep
%autosetup -n k9s-%{version}
%build
make build
%install
mkdir %{buildroot}%{_bindir} -p
cp ./execs/k9s %{buildroot}%{_bindir}
%files
%{_bindir}/k9s
%changelog
%autochangelog
|