ceb0f75182
This change replaces all of the roles references in our various files with the new role name. This is being done because Ansible no longer allows hyphens in role names. TODO: (gchamoul) Remove healthcheck-service-status once this patch is merged. Tripleo Jobs are RED due to THT trying to execute this validation as inflight one but it has been renamed healthcheck_service_status. Co-Authored-by: Gael Chamoulaud <gchamoul@redhat.com> Change-Id: I19bb587ece403f86ddd0bbe174c282326500cfd3
21 lines
620 B
YAML
21 lines
620 B
YAML
---
|
|
- hosts: undercloud
|
|
vars:
|
|
metadata:
|
|
name: Verify undercloud fits the disk space requirements to perform an upgrade
|
|
description: >
|
|
Make sure that the root partition on the undercloud node has enough
|
|
free space before starting an upgrade
|
|
|
|
http://tripleo.org/install/environments/baremetal.html#minimum-system-requirements
|
|
groups:
|
|
- pre-upgrade
|
|
volumes:
|
|
- {mount: /var/lib/docker, min_size: 10}
|
|
- {mount: /var/lib/config-data, min_size: 3}
|
|
- {mount: /var, min_size: 16}
|
|
- {mount: /, min_size: 20}
|
|
|
|
roles:
|
|
- undercloud_disk_space
|