9a7974a14f
Add a CLI oidc-auth to obtain token through oidc-client and dex from Windows Active Directory for Kubernetes authentication. Story: 2006711 Task: 38919 Change-Id: Id0e505202a926aaaf8f6e1182c8c87738ab61025 Signed-off-by: Teresa Ho <teresa.ho@windriver.com>
73 lines
1.5 KiB
RPMSpec
73 lines
1.5 KiB
RPMSpec
%global pypi_name oidcauthtools
|
|
|
|
Summary: OIDC authentication tool package
|
|
Name: %{pypi_name}
|
|
Version: 1.0
|
|
Release: %{tis_patch_ver}%{?_tis_dist}
|
|
License: Apache-2.0
|
|
Group: base
|
|
Packager: Wind River <info@windriver.com>
|
|
URL: unknown
|
|
BuildArch: noarch
|
|
Source: %name-%version.tar.gz
|
|
|
|
BuildRequires: python-pbr >= 2.0.0
|
|
BuildRequires: python-setuptools
|
|
BuildRequires: python2-wheel
|
|
|
|
Requires: python2-mechanize
|
|
Requires: python-pbr >= 2.0.0
|
|
|
|
|
|
%description
|
|
This package contains OIDC authentication tools to obtain token
|
|
from DEX and setup kubernetes credential for a user.
|
|
|
|
%define local_bindir /usr/bin/
|
|
%define pythonroot /usr/lib/python2.7/site-packages
|
|
|
|
|
|
%prep
|
|
%setup
|
|
|
|
# Remove bundled egg-info
|
|
rm -rf *.egg-info
|
|
|
|
%build
|
|
export PBR_VERSION=%{version}
|
|
%{__python2} setup.py build
|
|
%py2_build_wheel
|
|
|
|
%install
|
|
export PBR_VERSION=%{version}
|
|
%{__python} setup.py install --root=$RPM_BUILD_ROOT \
|
|
--install-lib=%{pythonroot} \
|
|
--prefix=/usr \
|
|
--install-data=/usr/share \
|
|
--single-version-externally-managed
|
|
mkdir -p $RPM_BUILD_ROOT/wheels
|
|
install -m 644 dist/*.whl $RPM_BUILD_ROOT/wheels/
|
|
|
|
%global _buildsubdir %{_builddir}/%{name}-%{version}
|
|
install -d 755 %{buildroot}%{local_bindir}
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%license LICENSE
|
|
%defattr(-,root,root,-)
|
|
/usr/bin/*
|
|
%{python2_sitelib}/oidcauthtools
|
|
%{python2_sitelib}/*.egg-info
|
|
|
|
|
|
%package wheels
|
|
Summary: %{name} wheels
|
|
|
|
%description wheels
|
|
Contains python wheels for %{name}
|
|
|
|
%files wheels
|
|
/wheels/*
|