mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 01:46:55 +00:00
33 lines
845 B
RPMSpec
33 lines
845 B
RPMSpec
|
Name: kubelet
|
||
|
Version: OVERRIDE_THIS
|
||
|
Release: 00
|
||
|
License: ASL 2.0
|
||
|
Summary: Container Cluster Manager - Kubernetes Node Agent
|
||
|
|
||
|
URL: https://kubernetes.io
|
||
|
|
||
|
Requires: conntrack
|
||
|
Requires: ebtables
|
||
|
Requires: ethtool
|
||
|
Requires: iproute
|
||
|
Requires: iptables >= 1.4.21
|
||
|
Requires: kubernetes-cni >= 0.7.5
|
||
|
Requires: socat
|
||
|
Requires: util-linux
|
||
|
|
||
|
%description
|
||
|
The node agent of Kubernetes, the container cluster manager.
|
||
|
|
||
|
%install
|
||
|
|
||
|
install -m 755 -d %{buildroot}%{_bindir}
|
||
|
install -m 755 -d %{buildroot}%{_sysconfdir}/systemd/system/
|
||
|
install -m 755 -d %{buildroot}%{_sysconfdir}/kubernetes/manifests/
|
||
|
install -p -m 755 -t %{buildroot}%{_bindir} {kubelet}
|
||
|
install -p -m 644 -t %{buildroot}%{_sysconfdir}/systemd/system/ {kubelet.service}
|
||
|
|
||
|
%files
|
||
|
%{_bindir}/kubelet
|
||
|
%attr(644,-,-) %{_sysconfdir}/systemd/system/kubelet.service
|
||
|
%{_sysconfdir}/kubernetes/manifests/
|