7f9029b21f
This change is part of an initiative to decouple the pci-irq-affinity agent process from the platform by converting it into a resource to be deployed along with stx-openstack application. Depends-on: https://review.opendev.org/c/starlingx/utilities/+/814031 Story: 2009299 Task: 43656 Change-Id: Iefc1106e01cbfc874119e16b610e48a629771db1 Signed-off-by: Heitor Matsui <HeitorVieira.Matsui@windriver.com>
75 lines
1.9 KiB
RPMSpec
75 lines
1.9 KiB
RPMSpec
%global helm_folder /usr/lib/helm
|
|
%global armada_folder /usr/lib/armada
|
|
%global app_folder /usr/lib/application
|
|
%global toolkit_version 0.2.19
|
|
%global helmchart_version 0.1.0
|
|
|
|
Summary: StarlingX Openstack Application Helm charts
|
|
Name: stx-openstack-helm
|
|
Version: 1.0
|
|
Release: %{tis_patch_ver}%{?_tis_dist}
|
|
License: Apache-2.0
|
|
Group: base
|
|
Packager: Wind River <info@windriver.com>
|
|
URL: unknown
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: helm
|
|
BuildRequires: openstack-helm-infra
|
|
BuildRequires: chartmuseum
|
|
Requires: openstack-helm-infra
|
|
Requires: openstack-helm
|
|
Requires: python-k8sapp-openstack-wheels
|
|
|
|
%description
|
|
StarlingX Openstack Application Helm charts
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
# Stage helm-toolkit in the local repo
|
|
cp %{helm_folder}/helm-toolkit-%{toolkit_version}.tgz helm-charts/
|
|
|
|
# Host a server for the charts
|
|
chartmuseum --debug --port=8879 --context-path='/charts' --storage="local" --storage-local-rootdir="./helm-charts" &
|
|
sleep 2
|
|
helm repo add local http://localhost:8879/charts
|
|
|
|
# Make the charts. These produce a tgz file
|
|
cd helm-charts
|
|
make nova-api-proxy
|
|
make pci-irq-affinity-agent
|
|
make garbd
|
|
make keystone-api-proxy
|
|
make fm-rest-api
|
|
make nginx-ports-control
|
|
make dcdbsync
|
|
make psp-rolebinding
|
|
cd -
|
|
|
|
# terminate helm server (the last backgrounded task)
|
|
kill %1
|
|
|
|
# remove helm-toolkit. This will be packaged with openstack-helm-infra
|
|
rm ./helm-charts/helm-toolkit-%{toolkit_version}.tgz
|
|
|
|
%install
|
|
# helm_folder is created by openstack-helm-infra
|
|
install -d -m 755 ${RPM_BUILD_ROOT}%{app_folder}
|
|
install -p -D -m 755 files/metadata.yaml ${RPM_BUILD_ROOT}%{app_folder}
|
|
install -d -m 755 ${RPM_BUILD_ROOT}%{helm_folder}
|
|
install -p -D -m 755 helm-charts/*.tgz ${RPM_BUILD_ROOT}%{helm_folder}
|
|
install -d -m 755 ${RPM_BUILD_ROOT}%{armada_folder}
|
|
install -p -D -m 755 manifests/*.yaml ${RPM_BUILD_ROOT}%{armada_folder}
|
|
|
|
%files
|
|
#helm_folder is owned by openstack-helm-infra
|
|
%defattr(-,root,root,-)
|
|
%{helm_folder}/*
|
|
%{armada_folder}/*
|
|
%{app_folder}/*
|