Sync from SUSE:SLFO:Main elemental-agent revision e01790038e79b56cf4f759f3f642671a

This commit is contained in:
Adrian Schröter 2024-05-03 12:18:19 +02:00
commit 9b21d1d734
8 changed files with 220 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

18
_service Normal file
View File

@ -0,0 +1,18 @@
<services>
<service name="obs_scm" mode="manual">
<param name="url">https://github.com/rancher-sandbox/cluster-api-provider-elemental</param>
<param name="scm">git</param>
<param name="exclude">.git</param>
<param name="filename">elemental-agent</param>
<param name="revision">main</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="changesgenerate">enable</param>
<param name="extract">.obs/specfile/elemental-agent.spec</param>
<param name="extract">.obs/specfile/elemental-agent.rpmlintrc</param>
</service>
<service name="tar" mode="buildtime"/>
<service name="set_version" mode="manual">
<param name="basename">elemental-agent</param>
</service>
</services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/rancher-sandbox/cluster-api-provider-elemental</param>
<param name="changesrevision">ad2962ae2701f65a7b25004c28318e648188c4dc</param></service></servicedata>

BIN
elemental-agent-0.3.0.obscpio (Stored with Git LFS) Normal file

Binary file not shown.

20
elemental-agent.changes Normal file
View File

@ -0,0 +1,20 @@
-------------------------------------------------------------------
Mon Dec 04 15:52:15 UTC 2023 - dcassany@suse.com
- Update to version 0.3.0:
* Include rpmlintrc as source in spec
* Add obs support (#11)
* Typo fix
* Improve elemental api tls setup (#10)
* Revert QUICKSTART unreleased https changes
* Add Elemental API TLS support (#9)
* Update Rancher Turtles documentation
* Implement authentication (#8)
* Fix plugins inclusion in release artifacts
* Fix release workflow
* Add elemental toolkit integration (#7)
-------------------------------------------------------------------
Thu Nov 30 09:44:02 UTC 2023 - Andrea Mazzotti <andrea.mazzotti@suse.com>
- Initial version 0.3.0

4
elemental-agent.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: elemental-agent
version: 0.3.0
mtime: 1701705065
commit: 7bccd4c8ada58a906c007d456af1fbad303a7da4

View File

@ -0,0 +1,5 @@
# ignore rclink missing checks
addFilter("W: suse-missing-rclink");
# ignore -fPIE/fpie compiler flags
addFilter("W: position-independent-executable-suggested");

143
elemental-agent.spec Normal file
View File

@ -0,0 +1,143 @@
#
# spec file for package elemental-agent
#
# 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 pluginsdir /usr/lib/elemental/plugins
Name: elemental-agent
Version: 0.3.0
Release: 0
Summary: Elemental CAPI agent
License: Apache-2.0
Group: System/Management
URL: https://github.com/rancher-sandbox/cluster-api-provider-elemental
Source: %{name}-%{version}.tar
Source1: %{name}.obsinfo
Source2: %{name}.rpmlintrc
Requires: elemental-plugin
BuildRequires: make
BuildRequires: golang(API) >= 1.21
BuildRequires: golang-packaging
%{go_provides}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
The Elemental CAPI agent is responsible for managing the OS
versions and maintaining a machine inventory to assist with edge or
baremetal installations.
%package -n elemental-systemd-services
Summary: Elemental CAPI agent systemd services
Requires: elemental-agent = %{version}-%{release}
Requires: elemental-plugin-toolkit = %{version}-%{release}
%{?systemd_requires}
%description -n elemental-systemd-services
This package contains systemd services to run the elemental-agent
when the elemental-plugin-toolkit is also in use.
%package -n elemental-plugin-toolkit
Summary: Provides the elemental plugin
Provides: elemental-plugin
Requires: elemental-agent = %{version}-%{release}
Requires: elemental-toolkit
%description -n elemental-plugin-toolkit
The toolkit plugin allows integration between the elemental-toolkit
and the elemental-agent.
%package -n elemental-plugin-dummy
Summary: Provides a dummy plugin
Provides: elemental-plugin
Requires: elemental-agent = %{version}-%{release}
%description -n elemental-plugin-dummy
The dummy plugin is a very basic plugin for the elemental-agent
that can be used for debugging, or when no other plugin option
is available.
%prep
%setup -q -n %{name}-%{version}
cp %{S:1} .
%build
%goprep .
export GIT_TAG=`echo "%{version}" | cut -d "+" -f 1`
GIT_COMMIT=$(cat %{name}.obsinfo | grep commit: | cut -d" " -f 2)
export GIT_COMMIT=${GIT_COMMIT:0:8}
MTIME=$(cat %{name}.obsinfo | grep mtime: | cut -d" " -f 2)
export GIT_COMMIT_DATE=$(date -d @${MTIME} +%Y%m%d)
mkdir -p bin
make build-agent
make build-plugins
%install
%goinstall
%{__install} -d -m 755 %{buildroot}%{_sbindir}
%{__install} -d -m 755 %{buildroot}%{pluginsdir}
%{__install} -m 755 bin/elemental-agent %{buildroot}%{_sbindir}
%{__install} -m 755 bin/elemental.so %{buildroot}%{pluginsdir}
%{__install} -m 755 bin/dummy.so %{buildroot}%{pluginsdir}
mkdir -p %{buildroot}%{_unitdir}
cp -a framework/files/usr/lib/systemd/system/* %{buildroot}%{_unitdir}
%pre -n elemental-systemd-services
%service_add_pre elemental-agent.service
%service_add_pre elemental-agent-install.service
%post -n elemental-systemd-services
%service_add_post elemental-agent.service
%service_add_post elemental-agent-install.service
%preun -n elemental-systemd-services
%service_del_preun elemental-agent.service
%service_del_preun elemental-agent-install.service
%postun -n elemental-systemd-services
%service_del_postun elemental-agent.service
%service_del_postun elemental-agent-install.service
%files
%defattr(-,root,root,-)
%license LICENSE
%{_sbindir}/%{name}
%dir /usr/lib/elemental
%dir %{pluginsdir}
%files -n elemental-systemd-services
%defattr(-,root,root,-)
%license LICENSE
%dir %{_unitdir}
%{_unitdir}/elemental-agent.service
%{_unitdir}/elemental-agent-install.service
%files -n elemental-plugin-toolkit
%defattr(-,root,root,-)
%license LICENSE
%dir %{pluginsdir}
%{pluginsdir}/elemental.so
%files -n elemental-plugin-dummy
%defattr(-,root,root,-)
%license LICENSE
%dir %{pluginsdir}
%{pluginsdir}/dummy.so
%changelog