Merge "Adds heat-manage purge_deleted cron job validation" into stable/queens

This commit is contained in:
Zuul 2021-02-17 10:51:57 +00:00 committed by Gerrit Code Review
commit 715d44cf75
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,4 @@
---
features:
- |
Adds an undercloud heat-manage purge_deleted cron job validation.

View File

@ -0,0 +1,22 @@
---
- hosts: undercloud
vars:
metadata:
name: Verify heat-manage purge_deleted is enabled in crontab
description: >
Without a purge_deleted crontab enabled, the
heat database can grow very large. This validation checks that
the purge_deleted crontab has been set up.
groups:
- pre-upgrade
- pre-deployment
cron_check: "heat-manage purge_deleted"
tasks:
- name: Get heat crontab
become: true
shell: 'crontab -l -u heat | grep -v "^#"'
register: cron_result
changed_when: False
- name: Check heat crontab
fail: msg="heat-manage purge_deleted does not appear to be enabled via cron. You should add '<desired interval > {{ cron_check }}' to the heat users crontab."
failed_when: "cron_check not in cron_result.stdout"