Mohammed Naser | f3f59a7 | 2023-01-15 21:02:04 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | {{/* |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */}} |
| 16 | |
| 17 | set -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. |
| 21 | DISABLED_SVC="$(openstack compute service list -f value | grep -v 'nova-compute' | grep 'down' || true)" |
| 22 | if [ ! -z "${DISABLED_SVC}" ]; then |
| 23 | sleep {{ .Values.jobs.service_cleaner.sleep_time }} |
| 24 | fi |
| 25 | |
| 26 | NOVA_SERVICES_TO_CLEAN="$(openstack compute service list -f value -c Binary | sort | uniq | grep -v '^nova-compute$')" |
| 27 | for 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 |
| 32 | done |
Oleksandr K. | 24c88fd | 2024-12-08 22:28:50 -0800 | [diff] [blame] | 33 | |
| 34 | {{- if .Values.jobs.service_cleaner.extra_command }} |
| 35 | {{ .Values.jobs.service_cleaner.extra_command }} |
| 36 | {{- end }} |