Update package to version 1.1.0
This commit is contained in:
parent
98c287b77a
commit
45e3f1ef19
Binary file not shown.
Binary file not shown.
@ -1,14 +1,18 @@
|
|||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
|
|
||||||
Name: PilotGo-plugin-prometheus
|
Name: PilotGo-plugin-prometheus
|
||||||
Version: 1.0.1
|
Version: 1.1.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: PilotGo prometheus plugin provides cluster monitor and alert.
|
Summary: PilotGo prometheus plugin provides cluster monitor and alert.
|
||||||
License: MulanPSL-2.0
|
License: MulanPSL-2.0
|
||||||
URL: https://gitee.com/openeuler/PilotGo-plugin-prometheus
|
URL: https://gitee.com/openeuler/PilotGo-plugin-prometheus
|
||||||
Source0: https://gitee.com/openeuler/%{name}-%{version}.tar.gz
|
Source0: https://gitee.com/openeuler/PilotGo-plugin-prometheus/repository/archive/v%{version}.tar.gz
|
||||||
# Web packaged from 822e454fdad9bb41a83640d297ad055e1c30af26
|
# tar -xvf Source0
|
||||||
|
# cd %{name}-v%{version}/web
|
||||||
|
# run 'yarn install and yarn build' in it
|
||||||
|
# tar -czvf %{name}-web.tar.gz ../web/dist/
|
||||||
Source1: PilotGo-plugin-prometheus-web.tar.gz
|
Source1: PilotGo-plugin-prometheus-web.tar.gz
|
||||||
|
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
BuildRequires: golang
|
BuildRequires: golang
|
||||||
Requires: prometheus2
|
Requires: prometheus2
|
||||||
@ -18,22 +22,24 @@ Provides: pilotgo-plugin-prometheus = %{version}-%{release}
|
|||||||
%description
|
%description
|
||||||
PilotGo prometheus plugin provides cluster monitor and alert.
|
PilotGo prometheus plugin provides cluster monitor and alert.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n %{name}-%{version}
|
%setup -n %{name}-v%{version}
|
||||||
tar -xzvf %{SOURCE1}
|
tar -xzvf %{SOURCE1}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
cd server
|
pushd server
|
||||||
GO111MODULE=on go build -mod=vendor -o PilotGo-plugin-prometheus main.go
|
GO111MODULE=on go build -mod=vendor -o PilotGo-plugin-prometheus main.go
|
||||||
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}/opt/PilotGo/plugin/prometheus/{server/{scripts,log},web/dist}
|
mkdir -p %{buildroot}/opt/PilotGo/plugin/prometheus/{server/{scripts,log},web/dist}
|
||||||
install -D -m 0755 server/PilotGo-plugin-prometheus %{buildroot}/opt/PilotGo/plugin/prometheus/server
|
pushd server
|
||||||
install -D -m 0644 server/scripts/init_prometheus_yml.sh %{buildroot}/opt/PilotGo/plugin/prometheus/server/scripts/init_prometheus_yml.sh
|
install -D -m 0755 PilotGo-plugin-prometheus %{buildroot}/opt/PilotGo/plugin/prometheus/server
|
||||||
install -D -m 0644 server/scripts/prometheus.yml %{buildroot}/opt/PilotGo/plugin/prometheus/server/scripts/prometheus.yml
|
install -D -m 0644 scripts/init_prometheus_yml.sh %{buildroot}/opt/PilotGo/plugin/prometheus/server/scripts/init_prometheus_yml.sh
|
||||||
install -D -m 0644 server/config.yml.templete %{buildroot}/opt/PilotGo/plugin/prometheus/server/config.yml
|
install -D -m 0644 scripts/prometheus.yml %{buildroot}/opt/PilotGo/plugin/prometheus/server/scripts/prometheus.yml
|
||||||
install -D -m 0644 server/scripts/PilotGo-plugin-prometheus.service %{buildroot}%{_unitdir}/PilotGo-plugin-prometheus.service
|
install -D -m 0644 config.yml.templete %{buildroot}/opt/PilotGo/plugin/prometheus/server/config.yml
|
||||||
|
install -D -m 0644 scripts/PilotGo-plugin-prometheus.service %{buildroot}%{_unitdir}/PilotGo-plugin-prometheus.service
|
||||||
|
popd
|
||||||
cp -rf web/dist %{buildroot}/opt/PilotGo/plugin/prometheus/web
|
cp -rf web/dist %{buildroot}/opt/PilotGo/plugin/prometheus/web
|
||||||
|
|
||||||
%post
|
%post
|
||||||
@ -44,24 +50,21 @@ cp -rf web/dist %{buildroot}/opt/PilotGo/plugin/prometheus/web
|
|||||||
|
|
||||||
%postun
|
%postun
|
||||||
%systemd_postun PilotGo-plugin-prometheus.service
|
%systemd_postun PilotGo-plugin-prometheus.service
|
||||||
|
# Clear all installed files when uninstalling
|
||||||
|
rm -rf /opt/PilotGo/plugin/prometheus
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%dir /opt/PilotGo
|
|
||||||
%dir /opt/PilotGo/plugin
|
|
||||||
%dir /opt/PilotGo/plugin/prometheus
|
|
||||||
%dir /opt/PilotGo/plugin/prometheus/server
|
|
||||||
%dir /opt/PilotGo/plugin/prometheus/server/log
|
|
||||||
%dir /opt/PilotGo/plugin/prometheus/server/scripts
|
|
||||||
/opt/PilotGo/plugin/prometheus/server/PilotGo-plugin-prometheus
|
/opt/PilotGo/plugin/prometheus/server/PilotGo-plugin-prometheus
|
||||||
/opt/PilotGo/plugin/prometheus/server/scripts/init_prometheus_yml.sh
|
/opt/PilotGo/plugin/prometheus/server/scripts/init_prometheus_yml.sh
|
||||||
/opt/PilotGo/plugin/prometheus/server/scripts/prometheus.yml
|
/opt/PilotGo/plugin/prometheus/server/scripts/prometheus.yml
|
||||||
/opt/PilotGo/plugin/prometheus/server/config.yml
|
/opt/PilotGo/plugin/prometheus/server/config.yml
|
||||||
|
/opt/PilotGo/plugin/prometheus/server/log
|
||||||
|
/opt/PilotGo/plugin/prometheus/web
|
||||||
%{_unitdir}/PilotGo-plugin-prometheus.service
|
%{_unitdir}/PilotGo-plugin-prometheus.service
|
||||||
/opt/PilotGo/plugin/prometheus/web/dist
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 02 2024 jianxinyu <jiangxinyu@kylinos.cn> - 1.1.0-1
|
||||||
|
- Update package to version 1.1.0
|
||||||
|
|
||||||
* Fri Sep 01 2023 jianxinyu <jiangxinyu@kylinos.cn> - 1.0.1-1
|
* Fri Sep 01 2023 jianxinyu <jiangxinyu@kylinos.cn> - 1.0.1-1
|
||||||
- Package init
|
- Package init
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
BIN
v1.1.0.tar.gz
Normal file
BIN
v1.1.0.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user