diff --git a/centos_iso_image.inc b/centos_iso_image.inc index 91662d64..bc59d224 100644 --- a/centos_iso_image.inc +++ b/centos_iso_image.inc @@ -160,6 +160,7 @@ openstack-aodh-config python-panko openstack-panko-api openstack-panko-common +openstack-panko-config # rabbitmq-server rabbitmq-server diff --git a/centos_pkg_dirs b/centos_pkg_dirs index ca0003ea..6a5ce146 100644 --- a/centos_pkg_dirs +++ b/centos_pkg_dirs @@ -10,6 +10,7 @@ openstack/openstack-magnum openstack/openstack-magnum-ui openstack/openstack-ras openstack/openstack-panko +openstack/openstack-panko-config openstack/openstack-os-vif openstack/python-aodhclient openstack/python-ceilometer diff --git a/openstack/openstack-panko-config/centos/build_srpm.data b/openstack/openstack-panko-config/centos/build_srpm.data new file mode 100644 index 00000000..da1e20bd --- /dev/null +++ b/openstack/openstack-panko-config/centos/build_srpm.data @@ -0,0 +1,2 @@ +SRC_DIR="files" +TIS_PATCH_VER=0 diff --git a/openstack/openstack-panko-config/centos/openstack-panko-config.spec b/openstack/openstack-panko-config/centos/openstack-panko-config.spec new file mode 100644 index 00000000..0de88c1e --- /dev/null +++ b/openstack/openstack-panko-config/centos/openstack-panko-config.spec @@ -0,0 +1,35 @@ +Summary: openstack-panko-config +Name: openstack-panko-config +Version: 1.0 +Release: %{tis_patch_ver}%{?_tis_dist} +License: Apache-2.0 +Group: openstack +Packager: StarlingX +URL: unknown +BuildArch: noarch +Source: %name-%version.tar.gz + +Requires: openstack-panko-common +Requires: openstack-panko-api + +Summary: package StarlingX configuration files of openstack-panko to system folder. + +%description +package StarlingX configuration files of openstack-panko to system folder. + +%prep +%setup + +%build + +%install +%{__install} -d %{buildroot}%{_bindir} +%{__install} -m 0755 panko-expirer-active %{buildroot}%{_bindir}/panko-expirer-active + +%post +if test -s %{_sysconfdir}/logrotate.d/openstack-panko ; then + echo '#See /etc/logrotate.d/syslog for panko rules' > %{_sysconfdir}/logrotate.d/openstack-panko +fi + +%files +%{_bindir}/panko-expirer-active diff --git a/openstack/openstack-panko-config/files/panko-expirer-active b/openstack/openstack-panko-config/files/panko-expirer-active new file mode 100644 index 00000000..ef6cdee2 --- /dev/null +++ b/openstack/openstack-panko-config/files/panko-expirer-active @@ -0,0 +1,60 @@ +#!/bin/bash + +# +# Wrapper script to run panko-expirer when on active controller only +# +PANKO_EXPIRER_INFO="/var/run/panko-expirer.info" +PANKO_EXPIRER_CMD="/usr/bin/nice -n 2 /usr/bin/panko-expirer" + +function is_active_pgserver() +{ + # Determine whether we're running on the same controller as the service. + local service=postgres + local enabledactive=$(/usr/bin/sm-query service $service| grep enabled-active) + if [ "x$enabledactive" == "x" ] + then + # enabled-active not found for that service on this controller + return 1 + else + # enabled-active found for that resource + return 0 + fi +} + +if is_active_pgserver +then + if [ ! -f ${PANKO_EXPIRER_INFO} ] + then + echo skip_count=0 > ${PANKO_EXPIRER_INFO} + fi + + source ${PANKO_EXPIRER_INFO} + sudo -u postgres psql -d sysinv -c "SELECT alarm_id, entity_instance_id from i_alarm;" | grep -P "^(?=.*100.101)(?=.*${HOSTNAME})" &>/dev/null + if [ $? -eq 0 ] + then + source /etc/platform/platform.conf + if [ "${system_type}" = "All-in-one" ] + then + source /etc/init.d/task_affinity_functions.sh + idle_core=$(get_most_idle_core) + if [ "$idle_core" -ne "0" ] + then + sh -c "exec taskset -c $idle_core ${PANKO_EXPIRER_CMD}" + sed -i "/skip_count/s/=.*/=0/" ${PANKO_EXPIRER_INFO} + exit 0 + fi + fi + + if [ "$skip_count" -lt "3" ] + then + newval=$(($skip_count+1)) + sed -i "/skip_count/s/=.*/=$newval/" ${PANKO_EXPIRER_INFO} + exit 0 + fi + fi + + eval ${PANKO_EXPIRER_CMD} + sed -i "/skip_count/s/=.*/=0/" ${PANKO_EXPIRER_INFO} +fi + +exit 0 diff --git a/openstack/openstack-panko/centos/build_srpm.data b/openstack/openstack-panko/centos/build_srpm.data index 024e3e13..8429863c 100644 --- a/openstack/openstack-panko/centos/build_srpm.data +++ b/openstack/openstack-panko/centos/build_srpm.data @@ -1 +1 @@ -TIS_PATCH_VER=5 +TIS_PATCH_VER=6 diff --git a/openstack/openstack-panko/centos/meta_patches/0001-panko-config.patch b/openstack/openstack-panko/centos/meta_patches/0001-panko-config.patch index d422bbe1..4593e38e 100644 --- a/openstack/openstack-panko/centos/meta_patches/0001-panko-config.patch +++ b/openstack/openstack-panko/centos/meta_patches/0001-panko-config.patch @@ -5,9 +5,8 @@ Subject: [PATCH 1/1] panko config --- SOURCES/panko-dist.conf | 2 +- - SOURCES/panko-expirer-active | 27 +++++++++++++++++++++++++++ - SPECS/openstack-panko.spec | 22 +++++++++++++++++----- - 3 files changed, 45 insertions(+), 6 deletions(-) + SPECS/openstack-panko.spec | 17 ++++++++++++++++- + 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 SOURCES/panko-expirer-active diff --git a/SOURCES/panko-dist.conf b/SOURCES/panko-dist.conf @@ -19,142 +18,66 @@ index c33a2ee..ac6f79f 100644 -log_dir = /var/log/panko +#log_dir = /var/log/panko use_stderr = False - -diff --git a/SOURCES/panko-expirer-active b/SOURCES/panko-expirer-active -new file mode 100644 -index 0000000..7d526e0 ---- /dev/null -+++ b/SOURCES/panko-expirer-active -@@ -0,0 +1,60 @@ -+#!/bin/bash -+ -+# -+# Wrapper script to run panko-expirer when on active controller only -+# -+PANKO_EXPIRER_INFO="/var/run/panko-expirer.info" -+PANKO_EXPIRER_CMD="/usr/bin/nice -n 2 /usr/bin/panko-expirer" -+ -+function is_active_pgserver() -+{ -+ # Determine whether we're running on the same controller as the service. -+ local service=postgres -+ local enabledactive=$(/usr/bin/sm-query service $service| grep enabled-active) -+ if [ "x$enabledactive" == "x" ] -+ then -+ # enabled-active not found for that service on this controller -+ return 1 -+ else -+ # enabled-active found for that resource -+ return 0 -+ fi -+} -+ -+if is_active_pgserver -+then -+ if [ ! -f ${PANKO_EXPIRER_INFO} ] -+ then -+ echo skip_count=0 > ${PANKO_EXPIRER_INFO} -+ fi -+ -+ source ${PANKO_EXPIRER_INFO} -+ sudo -u postgres psql -d sysinv -c "SELECT alarm_id, entity_instance_id from i_alarm;" | grep -P "^(?=.*100.101)(?=.*${HOSTNAME})" &>/dev/null -+ if [ $? -eq 0 ] -+ then -+ source /etc/platform/platform.conf -+ if [ "${system_type}" = "All-in-one" ] -+ then -+ source /etc/init.d/task_affinity_functions.sh -+ idle_core=$(get_most_idle_core) -+ if [ "$idle_core" -ne "0" ] -+ then -+ sh -c "exec taskset -c $idle_core ${PANKO_EXPIRER_CMD}" -+ sed -i "/skip_count/s/=.*/=0/" ${PANKO_EXPIRER_INFO} -+ exit 0 -+ fi -+ fi -+ -+ if [ "$skip_count" -lt "3" ] -+ then -+ newval=$(($skip_count+1)) -+ sed -i "/skip_count/s/=.*/=$newval/" ${PANKO_EXPIRER_INFO} -+ exit 0 -+ fi -+ fi -+ -+ eval ${PANKO_EXPIRER_CMD} -+ sed -i "/skip_count/s/=.*/=0/" ${PANKO_EXPIRER_INFO} -+fi -+ -+exit 0 + diff --git a/SPECS/openstack-panko.spec b/SPECS/openstack-panko.spec index d12da57..90471d9 100644 --- a/SPECS/openstack-panko.spec +++ b/SPECS/openstack-panko.spec -@@ -4,20 +4,26 @@ - +@@ -4,20 +4,27 @@ + Name: openstack-panko Version: 3.0.0 -Release: 1%{?dist} +Release: 1%{?_tis_dist}.%{tis_patch_ver} Summary: Panko provides Event storage and REST API - + License: ASL 2.0 URL: http://github.com/openstack/panko Source0: https://tarballs.openstack.org/%{pypi_name}/%{pypi_name}-%{upstream_version}.tar.gz Source1: %{pypi_name}-dist.conf --Source2: %{pypi_name}.logrotate -+# WRS -+Source2: panko-expirer-active + Source2: %{pypi_name}.logrotate + +# WRS: Include patches here +Patch1: 0001-modify-panko-api.patch ++Patch2: 0002-Change-event-list-descending.patch ++Patch3: 0003-Fix-event-query-to-sqlalchemy-with-non-admin-user.patch + BuildArch: noarch - + BuildRequires: python-setuptools BuildRequires: python-pbr BuildRequires: python2-devel BuildRequires: openstack-macros +BuildRequires: python-tenacity >= 3.1.0 - + %description HTTP API to store events. -@@ -116,6 +122,9 @@ This package contains documentation files for panko. +@@ -116,6 +123,11 @@ This package contains documentation files for panko. %prep %setup -q -n %{pypi_name}-%{upstream_version} - + +# WRS: Apply patches here +%patch1 -p1 ++%patch2 -p1 ++%patch3 -p1 + find . \( -name .gitignore -o -name .placeholder \) -delete - + find panko -name \*.py -exec sed -i '/\/usr\/bin\/env python/{d;q}' {} + -@@ -158,6 +167,8 @@ mkdir -p %{buildroot}/%{_var}/log/%{name} +@@ -158,6 +170,8 @@ mkdir -p %{buildroot}/%{_var}/log/%{name} install -p -D -m 640 %{SOURCE1} %{buildroot}%{_datadir}/panko/panko-dist.conf install -p -D -m 640 etc/panko/panko.conf %{buildroot}%{_sysconfdir}/panko/panko.conf install -p -D -m 640 etc/panko/api_paste.ini %{buildroot}%{_sysconfdir}/panko/api_paste.ini +# WRS +install -p -D -m 640 panko/api/panko-api.py %{buildroot}%{_datadir}/panko/panko-api.py - + #TODO(prad): build the docs at run time, once the we get rid of postgres setup dependency - -@@ -169,8 +180,8 @@ install -d -m 755 %{buildroot}%{_sharedstatedir}/panko - install -d -m 755 %{buildroot}%{_sharedstatedir}/panko/tmp - install -d -m 755 %{buildroot}%{_localstatedir}/log/panko - --# Install logrotate --install -p -D -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/logrotate.d/%{name} -+# WRS -+install -p -D -m 755 %{SOURCE2} %{buildroot}%{_bindir}/panko-expirer-active - - # Remove all of the conf files that are included in the buildroot/usr/etc dir since we installed them above - rm -f %{buildroot}/usr/etc/panko/* -@@ -201,14 +212,15 @@ exit 0 + +@@ -201,14 +215,15 @@ exit 0 %{_bindir}/panko-api %{_bindir}/panko-dbsync %{_bindir}/panko-expirer -+%{_bindir}/panko-expirer-active - + %files common %dir %{_sysconfdir}/panko +%{_datadir}/panko/panko-api.* @@ -162,10 +85,10 @@ index d12da57..90471d9 100644 %config(noreplace) %attr(-, root, panko) %{_sysconfdir}/panko/policy.json %config(noreplace) %attr(-, root, panko) %{_sysconfdir}/panko/panko.conf %config(noreplace) %attr(-, root, panko) %{_sysconfdir}/panko/api_paste.ini --%config(noreplace) %attr(-, root, panko) %{_sysconfdir}/logrotate.d/%{name} + %config(noreplace) %attr(-, root, panko) %{_sysconfdir}/logrotate.d/%{name} %dir %attr(0755, panko, root) %{_localstatedir}/log/panko - + %defattr(-, panko, panko, -) --- +-- 1.8.3.1 diff --git a/openstack/openstack-panko/centos/meta_patches/0002-spec-change-event-list-descending.patch b/openstack/openstack-panko/centos/meta_patches/0002-spec-change-event-list-descending.patch deleted file mode 100644 index 259df01e..00000000 --- a/openstack/openstack-panko/centos/meta_patches/0002-spec-change-event-list-descending.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 4e791be412662ae1f97cfd4ff5a90ea6337e49a4 Mon Sep 17 00:00:00 2001 -From: Angie Wang -Date: Thu, 16 Nov 2017 15:25:08 -0500 -Subject: [PATCH 1/1] spec change event list descending - ---- - SPECS/openstack-panko.spec | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/SPECS/openstack-panko.spec b/SPECS/openstack-panko.spec -index 90471d9..95497b4 100644 ---- a/SPECS/openstack-panko.spec -+++ b/SPECS/openstack-panko.spec -@@ -16,6 +16,7 @@ Source2: panko-expirer-active - - # WRS: Include patches here - Patch1: 0001-modify-panko-api.patch -+Patch2: 0002-Change-event-list-descending.patch - - BuildArch: noarch - -@@ -124,6 +125,7 @@ This package contains documentation files for panko. - - # WRS: Apply patches here - %patch1 -p1 -+%patch2 -p1 - - find . \( -name .gitignore -o -name .placeholder \) -delete - --- -1.8.3.1 - diff --git a/openstack/openstack-panko/centos/meta_patches/0003-spec-fix-event-query-to-sqlalchemy-with-non-admin-us.patch b/openstack/openstack-panko/centos/meta_patches/0003-spec-fix-event-query-to-sqlalchemy-with-non-admin-us.patch deleted file mode 100644 index 133901e7..00000000 --- a/openstack/openstack-panko/centos/meta_patches/0003-spec-fix-event-query-to-sqlalchemy-with-non-admin-us.patch +++ /dev/null @@ -1,32 +0,0 @@ -From aad89aa79de1e9f0b35afa1ba587c10591a889e0 Mon Sep 17 00:00:00 2001 -From: Angie Wang -Date: Mon, 11 Dec 2017 16:29:23 -0500 -Subject: [PATCH 1/1] spec fix event query to sqlalchemy with non admin user - ---- - SPECS/openstack-panko.spec | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/SPECS/openstack-panko.spec b/SPECS/openstack-panko.spec -index 95497b4..87a6a5a 100644 ---- a/SPECS/openstack-panko.spec -+++ b/SPECS/openstack-panko.spec -@@ -17,6 +17,7 @@ Source2: panko-expirer-active - # WRS: Include patches here - Patch1: 0001-modify-panko-api.patch - Patch2: 0002-Change-event-list-descending.patch -+Patch3: 0003-Fix-event-query-to-sqlalchemy-with-non-admin-user.patch - - BuildArch: noarch - -@@ -126,6 +127,7 @@ This package contains documentation files for panko. - # WRS: Apply patches here - %patch1 -p1 - %patch2 -p1 -+%patch3 -p1 - - find . \( -name .gitignore -o -name .placeholder \) -delete - --- -1.8.3.1 - diff --git a/openstack/openstack-panko/centos/meta_patches/PATCH_ORDER b/openstack/openstack-panko/centos/meta_patches/PATCH_ORDER index af3579d2..34ee17d1 100644 --- a/openstack/openstack-panko/centos/meta_patches/PATCH_ORDER +++ b/openstack/openstack-panko/centos/meta_patches/PATCH_ORDER @@ -1,3 +1 @@ 0001-panko-config.patch -0002-spec-change-event-list-descending.patch -0003-spec-fix-event-query-to-sqlalchemy-with-non-admin-us.patch