%global helm_folder /usr/lib/helm %global armada_folder /usr/lib/armada %global toolkit_version 0.1.0 %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 URL: unknown Source0: %{name}-%{version}.tar.gz BuildArch: noarch BuildRequires: helm BuildRequires: openstack-helm-infra Requires: openstack-helm-infra Requires: openstack-helm %description StarlingX Openstack Application Helm charts %prep %setup %build # initialize helm and build the toolkit # helm init --client-only does not work if there is no networking # The following commands do essentially the same as: helm init %define helm_home %{getenv:HOME}/.helm mkdir %{helm_home} mkdir %{helm_home}/repository mkdir %{helm_home}/repository/cache mkdir %{helm_home}/repository/local mkdir %{helm_home}/plugins mkdir %{helm_home}/starters mkdir %{helm_home}/cache mkdir %{helm_home}/cache/archive # Stage a repository file that only has a local repo cp files/repositories.yaml %{helm_home}/repository/repositories.yaml # Stage a local repo index that can be updated by the build cp files/index.yaml %{helm_home}/repository/local/index.yaml # Stage helm-toolkit in the local repo cp %{helm_folder}/helm-toolkit-%{toolkit_version}.tgz . # Host a server for the charts helm serve --repo-path . & helm repo rm local helm repo add local http://localhost:8879/charts # Make the charts. These produce a tgz file make nova-api-proxy make garbd make keystone-api-proxy make fm-rest-api make clients # terminate helm server (the last backgrounded task) kill %1 # remove helm-toolkit. This will be packaged with openstack-helm-infra rm ./helm-toolkit-%{toolkit_version}.tgz %install # helm_folder is created by openstack-helm-infra install -d -m 755 ${RPM_BUILD_ROOT}%{helm_folder} install -p -D -m 755 *.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}/*