Skip to content

Commit

Permalink
Merge "Add custom apps in the k8s-pod-recovery service"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and openstack-gerrit committed Mar 24, 2021
2 parents 6169cc5 + 852ec5e commit 0e8206e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions kubernetes/k8s-pod-recovery/centos/files/k8s-pod-recovery
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

export PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
export KUBECONFIG=/etc/kubernetes/admin.conf
CONF_DIR=/etc/k8s-post-recovery.d
SLEEP_DELAY_SEC=15

NAME=$(basename $0)
Expand Down Expand Up @@ -101,6 +102,12 @@ function _unknown_pods {
# Target specific namespaces and pods on this host
SUPPORTED_NAMESPACES=('openstack' 'monitor')

shopt -s nullglob
for conf_file in ${CONF_DIR}/*.conf; do
grep -q '^namespace=' $conf_file || continue
SUPPORTED_NAMESPACES+=($(grep '^namespace=' $conf_file | awk -F '=' '{print $2}'))
done

if [ "$1" == 'recover' ]; then
# Recovers pods that are: Running/Unknown and Pending/Init:Unknown
for ns in ${SUPPORTED_NAMESPACES[@]}; do
Expand Down
3 changes: 3 additions & 0 deletions kubernetes/k8s-pod-recovery/centos/k8s-pod-recovery.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ Requires: systemd

%define local_dir /usr/local
%define local_sbindir %{local_dir}/sbin
%define k8s_recovery_conf_dir /etc/k8s-post-recovery.d

%prep

%install
install -d %{buildroot}%{k8s_recovery_conf_dir}
install -d %{buildroot}%{local_sbindir}
install -m 755 %{SOURCE0} %{buildroot}%{local_sbindir}/k8s-pod-recovery
install -p -D -m 644 %{SOURCE1} %{buildroot}%{_unitdir}/k8s-pod-recovery.service
Expand Down Expand Up @@ -50,3 +52,4 @@ fi
%defattr(-,root,root,-)
%{local_sbindir}/k8s-pod-recovery
%{_unitdir}/k8s-pod-recovery.service
%{k8s_recovery_conf_dir}

0 comments on commit 0e8206e

Please sign in to comment.