# Generate devel rpm %global with_devel 0 # Build with debug info rpm %global with_debug 0 # Run unit tests %global with_tests 0 # Build test binaries %global with_test_binaries 0 %if 0%{?with_debug} %global _dwz_low_mem_die_limit 0 %else %global debug_package %{nil} %endif %global git_commit e498a7c3ab16e248dc2a3eb176852c3f1039bf5a %global git_shortcommit %(c=%{git_commit}; echo ${c:0:7}) %global provider github %global provider_tld com %global project maistra %global repo istio-operator # are we building community or product rpms %global community_build true # https://github.com/maistra/istio-operator %global provider_prefix %{provider}.%{provider_tld}/%{project} # Use /usr/local as base dir, once upstream heavily depends on that %global _prefix /usr/local Name: istio-operator Version: 1.1.12 Release: 1%{?dist} Summary: A Kubernetes operator to manage Istio. License: ASL 2.0 URL: https://%{provider_prefix}/%{repo} Source0: https://%{provider_prefix}/%{repo}/archive/%{git_commit}/%{repo}-%{git_commit}.tar.gz Patch0: 0001-MAISTRA-1464-Update-gopkg.in-yaml.v2-to-v2.3.0.patch # e.g. el6 has ppc64 arch without gcc-go, so EA tag is required ExclusiveArch: x86_64 # If go_compiler is not set to 1, there is no virtual provide. Use golang instead. BuildRequires: golang >= 1.13 %description Istio-operator is a kubernetes operator to manage the lifecycle of Istio. %if 0%{?with_devel} %package devel Summary: %{summary} BuildArch: noarch %description devel Istio-operator is a kubernetes operator to manage the lifecycle of Istio. %endif %prep rm -rf OPERATOR mkdir -p OPERATOR/src/github.com/maistra/istio-operator tar zxf %{SOURCE0} -C OPERATOR/src/github.com/maistra/istio-operator --strip=1 pushd OPERATOR/src/github.com/maistra/istio-operator %patch0 -p1 popd %build cd OPERATOR export GOPATH=$(pwd):%{gopath} pushd src/github.com/maistra/istio-operator/ COMMUNITY=%{community_build} GO111MODULE=on VERSION=%{version}-%{release} GITREVISION=%{git_shortcommit} GITSTATUS=Clean GITTAG=%{version} make compile collect-resources popd %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_bindir} pushd OPERATOR/src/github.com/maistra/istio-operator/tmp/_output/bin/ %if 0%{?with_debug} cp -pav istio-operator $RPM_BUILD_ROOT%{_bindir}/ %else mkdir stripped echo "Dumping dynamic symbols" nm -D istio-operator --format=posix --defined-only \ | awk '{ print $1 }' | sort > dynsyms echo "Dumping function symbols" nm istio-operator --format=posix --defined-only \ | awk '{ if ($2 == "T" || $2 == "t" || $2 == "D") print $1 }' \ | sort > funcsyms echo "Grabbing other function symbols" comm -13 dynsyms funcsyms > keep_symbols COMPRESSED_NAME="operator_debuginfo" echo "remove unnecessary debug info" objcopy -S --remove-section .gdb_index --remove-section .comment \ --keep-symbols=keep_symbols "istio-operator" "${COMPRESSED_NAME}" echo "stripping operator" strip -o "stripped/istio-operator" -s istio-operator echo "compress debugdata for istio-operator into ${COMPRESSED_NAME}.xz" xz "${COMPRESSED_NAME}" echo "inject compressed data into .gnu_debugdata for istio-operator" objcopy --add-section ".gnu_debugdata=${COMPRESSED_NAME}.xz" "stripped/istio-operator" cp -pav "stripped/istio-operator" "${RPM_BUILD_ROOT}%{_bindir}/" %endif popd mkdir -p $RPM_BUILD_ROOT%{_datadir}/istio-operator/helm TEMPLATES_DIR=$RPM_BUILD_ROOT/%{_datadir}/istio-operator/default-templates mkdir -p ${TEMPLATES_DIR} pushd OPERATOR/src/github.com/maistra/istio-operator/tmp/_output/resources # install the charts cp -rpavT helm/ $RPM_BUILD_ROOT%{_datadir}/istio-operator/helm # install the templates cp -rpavT default-templates/ $RPM_BUILD_ROOT%{_datadir}/istio-operator/default-templates #install manifests cp -rpavT manifests/ $RPM_BUILD_ROOT/manifests popd %files %{_bindir}/istio-operator %{_datadir}/istio-operator /manifests %changelog * Thu Feb 18 2021 Kevin Conner - 1.1.12-1 - Update for 1.1.12 release * Tue Jan 5 2021 Kevin Conner - 1.1.11-1 - Release of 1.1.11-1 * Thu Oct 29 2020 Kevin Conner - 1.1.10-1 - Release of 1.1.10-1 * Fri Sep 11 2020 Brian Avery - 1.1.8-1 - Release of 1.1.8-1 * Tue Jul 21 2020 Kevin Conner - 1.1.5-1 - Release of 1.1.5-1 * Sun Jun 21 2020 Kevin Conner - 1.1.3-1 - Release of 1.1.3-1 * Mon May 4 2020 Kevin Conner - 1.1.1-1 - Release of 1.1.1-1 * Tue Feb 25 2020 Brian Avery - 1.1.0-1 - Update to Maistra 1.1