kayobe/ansible/wipe-disks.yml
Mark Goddard 5e9affb62c Infra VMs: fix some playbook host patterns
The infra-vms group was not added to some playbook host patterns where
it should have been. This change fixes that.

TrivialFix

Change-Id: I5df2918035df7577627fd2bd68417beddbcbf848
2021-11-15 20:54:19 +00:00

19 lines
610 B
YAML

---
# Warning! This play can result in lost data. Take care when developing and
# using it.
# Initialisation task to be applied on first boot of a system to initalise
# disks. We search for block devices that are not currently mounted, then wipe
# any LVM or file system state from them. Any associated dm-crypt devices are
# also closed and removed from crypttab.
- name: Ensure that all unmounted block devices are wiped
hosts: seed-hypervisor:seed:overcloud:infra-vms
tags:
- wipe-disks
roles:
- role: stackhpc.luks
vars:
luks_action: teardown-unmounted
- role: wipe-disks