blob: 978ca6d0ffcb86e7fff81f1fc5ef8f8acd9a9427 [file] [log] [blame]
Mohammed Naserf3f59a72023-01-15 21:02:04 -05001#!/bin/bash
2
3{{/*
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/}}
16
17set -xe
18
19# If any non-compute service is down, then sleep for 2 times the report_interval
20# to confirm service is still down.
21DISABLED_SVC="$(openstack compute service list -f value | grep -v 'nova-compute' | grep 'down' || true)"
22if [ ! -z "${DISABLED_SVC}" ]; then
23 sleep {{ .Values.jobs.service_cleaner.sleep_time }}
24fi
25
26NOVA_SERVICES_TO_CLEAN="$(openstack compute service list -f value -c Binary | sort | uniq | grep -v '^nova-compute$')"
27for NOVA_SERVICE in ${NOVA_SERVICES_TO_CLEAN}; do
28 DEAD_SERVICE_IDS=$(openstack compute service list --service ${NOVA_SERVICE} -f json | jq -r '.[] | select(.State == "down") | .ID')
29 for SERVICE_ID in ${DEAD_SERVICE_IDS}; do
30 openstack compute service delete "${SERVICE_ID}"
31 done
32done
Oleksandr K.24c88fd2024-12-08 22:28:50 -080033
34{{- if .Values.jobs.service_cleaner.extra_command }}
35{{ .Values.jobs.service_cleaner.extra_command }}
36{{- end }}