diff options
author | Aaditya Dhruv <[email protected]> | 2025-04-22 17:29:46 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-05-01 20:19:51 -0500 |
commit | 55298a51cb0cc5e68c5a43869f2f32b899d3a622 (patch) | |
tree | 50d271288502bcff6f0a5133ce0839d883ee8ef7 /roles/system/files/packages/k9s/k9s.spec |
init
Diffstat (limited to 'roles/system/files/packages/k9s/k9s.spec')
-rw-r--r-- | roles/system/files/packages/k9s/k9s.spec | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/roles/system/files/packages/k9s/k9s.spec b/roles/system/files/packages/k9s/k9s.spec new file mode 100644 index 0000000..ae4297b --- /dev/null +++ b/roles/system/files/packages/k9s/k9s.spec @@ -0,0 +1,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 + |