%define debug_package %{nil} Name: PilotGo-plugin-topology Version: 1.0.2 Release: 1 Summary: system application architecture detection plugin for PilotGo License: MulanPSL-2.0 URL: https://gitee.com/openeuler/PilotGo-plugin-topology Source0: https://gitee.com/src-openeuler/PilotGo-plugin-topology/%{name}-%{version}.tar.gz # tar -xvf Source0 # cd %{Name}-%{Version}/web/ # run 'yarn install and yarn build' in it # tar -czvf %{Name}-web.tar.gz dist Source1: PilotGo-plugin-topology-web.tar.gz BuildRequires: systemd BuildRequires: golang %description system application architecture detection plugin for PilotGo %package server Summary: PilotGo-plugin-topology server Provides: pilotgo-plugin-topology-server = %{version}-%{release} %description server PilotGo-plugin-topology server. %package agent Summary: PilotGo-plugin-topology agent Provides: pilotgo-plugin-topology-agent = %{version}-%{release} %description agent PilotGo-plugin-topology agent. %prep %autosetup -p1 -n %{name}-%{version} tar -xzvf %{SOURCE1} %build cp -rf dist/* server/handler/ # server cd server GOWORK=off GO111MODULE=on go build -mod=vendor -tags=production -o PilotGo-plugin-topology-server main.go # agent cd ../agent GOWORK=off GO111MODULE=on go build -mod=vendor -o PilotGo-plugin-topology-agent main.go %install mkdir -p %{buildroot}/opt/PilotGo/plugin/topology/{server/log,agent/log} # server install -D -m 0755 server/PilotGo-plugin-topology-server %{buildroot}/opt/PilotGo/plugin/topology/server install -D -m 0644 conf/topo_server.yaml.templete %{buildroot}/opt/PilotGo/plugin/topology/server/topo_server.yaml install -D -m 0644 scripts/PilotGo-plugin-topology-server.service %{buildroot}%{_unitdir}/PilotGo-plugin-topology-server.service # agent install -D -m 0755 agent/PilotGo-plugin-topology-agent %{buildroot}/opt/PilotGo/plugin/topology/agent install -D -m 0644 conf/topo_agent.yaml.templete %{buildroot}/opt/PilotGo/plugin/topology/agent/topo_agent.yaml install -D -m 0644 scripts/PilotGo-plugin-topology-agent.service %{buildroot}%{_unitdir}/PilotGo-plugin-topology-agent.service %files server %dir /opt/PilotGo %dir /opt/PilotGo/plugin %dir /opt/PilotGo/plugin/topology %dir /opt/PilotGo/plugin/topology/server %dir /opt/PilotGo/plugin/topology/server/log /opt/PilotGo/plugin/topology/server/PilotGo-plugin-topology-server /opt/PilotGo/plugin/topology/server/topo_server.yaml %{_unitdir}/PilotGo-plugin-topology-server.service %files agent %dir /opt/PilotGo %dir /opt/PilotGo/plugin %dir /opt/PilotGo/plugin/topology %dir /opt/PilotGo/plugin/topology/agent %dir /opt/PilotGo/plugin/topology/agent/log /opt/PilotGo/plugin/topology/agent/PilotGo-plugin-topology-agent /opt/PilotGo/plugin/topology/agent/topo_agent.yaml %{_unitdir}/PilotGo-plugin-topology-agent.service %changelog * Tue Mar 19 2024 wangjunqi - 1.0.2-1 - add custom topo feature * Wed Oct 18 2023 wangjunqi - 1.0.1-2 - change configuration file path to /opt * Tue Oct 10 2023 wangjunqi - 1.0.1-1 - Package init