File kubectl-community-images.spec of Package kubectl-community-images
#
# spec file for package kubectl-community-images
#
# 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-community-images
Version: 0.5.1
Release: 0
Summary: Warn when running images from community registries in Kubernetes
License: Apache-2.0
URL: https://github.com/dims/community-images
Source: community-images-%{version}.tar.gz
Source1: vendor.tar.gz
BuildRequires: go >= 1.19
%description
kubectl plugin that displays images running in a Kubernetes cluster that were pulled from community owned repositories and warn the user to switch repositories if needed
%prep
%autosetup -a1 -n community-images-%{version}
%setup -q -T -D -a1 -n community-images-%{version}
%build
go build \
-mod=vendor \
-buildmode=pie \
-ldflags="-X main.Version=%{version}" \
-o bin/community_images ./cmd/community_images/
%install
# Install the binary.
install -D -m 0755 bin/community_images "%{buildroot}/%{_bindir}/kubectl-community_images"
%files
%doc README.md
%license LICENSE
%{_bindir}/kubectl-community_images
%changelog