diff options
author | CoprDistGit <infra@openeuler.org> | 2023-03-15 15:09:57 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-03-15 15:09:57 +0000 |
commit | 2ca53381e9a211210ac4c478a27326c89a7c22ac (patch) | |
tree | 6b23f3ca3dbab98ab461bf804aefdcfca98b8cb6 | |
parent | 3a90e3c4c1a08bef350812bdf4bb565c10d44d32 (diff) |
automatic import of ceph-iscsiopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | ceph-iscsi.spec | 211 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 213 insertions, 0 deletions
@@ -0,0 +1 @@ +/ceph-iscsi-3.6.tar.gz diff --git a/ceph-iscsi.spec b/ceph-iscsi.spec new file mode 100644 index 0000000..a3127a6 --- /dev/null +++ b/ceph-iscsi.spec @@ -0,0 +1,211 @@ +# +# spec file for package ceph-iscsi +# +# Copyright (C) 2017-2018 The Ceph iSCSI Project Developers. See +# COPYING file at the top-level directory of this distribution and at +# https://github.com/ceph/ceph-iscsi/blob/master/COPYING +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. +# +# This file is under the GNU General Public License, version 3 or any +# later version. +# +# Please submit bugfixes or comments via http://tracker.ceph.com/ +# +#%if 0%{?rhel} == 7 +#%global with_python2 1 +#%endif +%global with_python2 0 + + +Name: ceph-iscsi +Version: 3.6 +Release: 1 +Group: System/Filesystems +Summary: Python modules for Ceph iSCSI gateway configuration management +%if 0%{?suse_version} +License: GPL-3.0-or-later +%else +License: GPLv3+ +%endif +URL: https://github.com/ceph/ceph-iscsi +Source0: https://github.com/ceph/ceph-iscsi/archive/%{version}/%{name}-%{version}.tar.gz + +BuildArch: noarch + +Obsoletes: ceph-iscsi-config +Obsoletes: ceph-iscsi-cli +Obsoletes: ceph-iscsi-tools + +Requires: tcmu-runner >= 1.4.0 +Requires: ceph-common >= 10.2.2 +%if 0%{?with_python2} +BuildRequires: python2-devel +BuildRequires: python2-setuptools +Requires: python-rados >= 10.2.2 +Requires: python-rbd >= 10.2.2 +Requires: python-netifaces >= 0.10.4 +Requires: python-rtslib >= 2.1.fb68 +Requires: python-cryptography +Requires: python-flask >= 0.10.1 +Requires: python-configshell >= 1.1.fb25 +%if 0%{?rhel} == 7 +Requires: pyOpenSSL +Requires: python-requests +%else +Requires: python-pyOpenSSL +Requires: python2-requests +%endif +%else +BuildRequires: python3-devel +BuildRequires: python3-setuptools +Requires: python3-rados >= 10.2.2 +Requires: python3-rbd >= 10.2.2 +Requires: python3-netifaces >= 0.10.4 +Requires: python3-rtslib >= 2.1.fb68 +Requires: python3-cryptography +Requires: python3-pyOpenSSL +Requires: python3-requests +%if 0%{?suse_version} +BuildRequires: python-rpm-macros +BuildRequires: fdupes +Requires: python3-Flask >= 0.10.1 +Requires: python3-configshell-fb >= 1.1.25 +%else +Requires: python3-flask >= 0.10.1 +Requires: python3-configshell >= 1.1.fb25 +%endif +%endif + +%if 0%{?rhel} +BuildRequires: systemd +%else +BuildRequires: systemd +BuildRequires: openEuler-rpm-config +%{?systemd_requires} +%endif + +%description +Python package providing the modules used to handle the configuration of an +iSCSI gateway, backed by Ceph RBD. The RPM installs configuration management +logic (ceph_iscsi_config modules), an rbd-target-gw systemd service, and +a CLI-based management tool 'gwcli', replacing the 'targetcli' tool. + +The configuration management modules may be are consumed by custom Ansible +playbooks and the rbd-target-gw daemon. + +The rbd-target-gw service is responsible for startup and shutdown actions, +replacing the 'target' service used in standalone LIO implementations. +In addition, rbd-target-gw also provides a REST API utilized by the Ceph +dashboard and gwcli tool, and a prometheus exporter for gateway LIO +performance statistics, supporting monitoring and visualisation tools like +Grafana. + +%prep +%autosetup -p1 + +%build +%if 0%{?with_python2} +%{__python2} setup.py build +%else +%if 0%{?suse_version} +%python3_build +%else +%{py3_build} +%endif +%endif + +%install +%if 0%{?with_python2} +%{__python2} setup.py install -O1 --skip-build --root %{buildroot} --install-scripts %{_bindir} +%else +%if 0%{?suse_version} +%python3_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} +%else +%{py3_install} +%endif +%endif +mkdir -p %{buildroot}%{_unitdir} +install -m 0644 .%{_unitdir}/rbd-target-gw.service %{buildroot}%{_unitdir} +install -m 0644 .%{_unitdir}/rbd-target-api.service %{buildroot}%{_unitdir} +mkdir -p %{buildroot}%{_mandir}/man8 +install -m 0644 gwcli.8 %{buildroot}%{_mandir}/man8/ +gzip %{buildroot}%{_mandir}/man8/gwcli.8 +mkdir -p %{buildroot}%{_unitdir}/rbd-target-gw.service.d +%if 0%{?suse_version} +mkdir -p %{buildroot}%{_sbindir} +ln -s service %{buildroot}%{_sbindir}/rcrbd-target-gw +ln -s service %{buildroot}%{_sbindir}/rcrbd-target-api +%endif + +%pre +%if 0%{?suse_version} +%service_add_pre rbd-target-gw.service rbd-target-api.service +%endif + +%post +%if 0%{?rhel} == 7 +/bin/systemctl --system daemon-reload &> /dev/null || : +/bin/systemctl --system enable rbd-target-gw &> /dev/null || : +/bin/systemctl --system enable rbd-target-api &> /dev/null || : +%endif +%if 0%{?fedora} || 0%{?rhel} >= 8 +%systemd_post rbd-target-gw.service +%systemd_post rbd-target-api.service +%endif +%if 0%{?suse_version} +%service_add_post rbd-target-gw.service rbd-target-api.service +%endif + +%preun +%if 0%{?fedora} || 0%{?rhel} >= 8 +%systemd_preun rbd-target-gw.service +%systemd_preun rbd-target-api.service +%endif +%if 0%{?suse_version} +%service_del_preun rbd-target-gw.service rbd-target-api.service +%endif + +%postun +%if 0%{?rhel} == 7 +/bin/systemctl --system daemon-reload &> /dev/null || : +%endif +%if 0%{?fedora} || 0%{?rhel} >= 8 +%systemd_postun rbd-target-gw.service +%systemd_postun rbd-target-api.service +%endif +%if 0%{?suse_version} +%service_del_postun rbd-target-gw.service rbd-target-api.service +%endif + + +%files +%license LICENSE +%license COPYING +%doc README +%doc iscsi-gateway.cfg_sample +%if 0%{?with_python2} +%{python2_sitelib}/* +%else +%{python3_sitelib}/* +%endif +%{_bindir}/gwcli +%{_bindir}/rbd-target-gw +%{_bindir}/rbd-target-api +%{_unitdir}/rbd-target-gw.service +%{_unitdir}/rbd-target-api.service +%{_mandir}/man8/gwcli.8.gz +%attr(0770,root,root) %dir %{_localstatedir}/log/rbd-target-gw +%attr(0770,root,root) %dir %{_localstatedir}/log/rbd-target-api +%dir %{_unitdir}/rbd-target-gw.service.d +%if 0%{?suse_version} +%{_sbindir}/rcrbd-target-gw +%{_sbindir}/rcrbd-target-api +%endif + +%changelog +* Tue Jan 03 2023 zhangdaolong <zhangdaolong@isoftstone.com> - 3.6-1 +- Created spec file for 3.6 release @@ -0,0 +1 @@ +56bed25d88f929674a23a914800ed290 ceph-iscsi-3.6.tar.gz |