5d2a46b2b0
This can be advantageous in deployments with a data security requirement. Change-Id: I555ee575ccec0cfbcc4c4bcb53677796c83227e3 Story: 2007555 Task: 39410
19 lines
600 B
YAML
19 lines
600 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
|
|
tags:
|
|
- wipe-disks
|
|
roles:
|
|
- role: stackhpc.luks
|
|
vars:
|
|
luks_action: teardown-unmounted
|
|
- role: wipe-disks
|