File kubectl-pi.spec of Package kubectl-pi
#
# spec file for package kubectl-pi
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
Name: kubectl-pi
Version: 1.0.0
Release: 0
Summary: Kubectl plugin to handle container drift in K8s clusters
License: Apache-2.0
URL: https://github.com/box/kube-exec-controller
Source: kube-exec-controller-%{version}.tar.gz
Source1: vendor.tar.gz
BuildRequires: go >= 1.19
%description
kube-exec-controller is an admission controller for handling container drift (caused by kubectl exec, attach, cp, or other interactive requests) inside a Kubernetes cluster. It runs as a Deployment and can be referred in a ValidatingWebhookConfiguration (see the provided demo/ as an example) to detect and evict interacted Pods after a pre-defined interval. This project also includes a kubectl plugin, named kubectl-pi (pod-interaction), for checking such interacted Pods or extending their eviction time.
%prep
%autosetup -p1 -a 1 -n kube-exec-controller-%{version}
%build
go build \
-mod=vendor \
-buildmode=pie \
-ldflags="-X main.Version=%{version}" \
-o bin/%{name} ./cmd/kubectl-pi/
%install
# Install the binary.
install -D -m 0755 bin/%{name} "%{buildroot}/%{_bindir}/%{name}"
%files
%doc README.md
%license LICENSE
%{_bindir}/%{name}
%changelog