Merge "Elaborate on secrets update in the docs"

This commit is contained in:
Zuul 2018-12-21 18:04:33 +00:00 committed by Gerrit Code Review
commit 8e185a5819
1 changed files with 10 additions and 1 deletions

View File

@ -415,7 +415,16 @@ Update Passphrases
~~~~~~~~~~~~~~~~~~~~
Replace passphrases under ``site/${NEW_SITE}/secrets/passphrases/``
with random generated ones (e.g. ``openssl rand -hex 10``).
with random generated ones:
- Passpharses generation ``openssl rand -hex 10``
- UUID generation ``uuidgen`` (e.g. for Ceph filesystem ID)
- Update ``secrets/passphrases/ipmi_admin_password.yaml`` with IPMI password
- Update ``secrets/passphrases/ubuntu_crypt_password.yaml`` with password hash:
::
python3 -c "from crypt import *; print(crypt('<YOUR_PASSWORD>', METHOD_SHA512))"
Manifest linting and combining layers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~