Elaborate on secrets update in the docs

Provide the details on how to generate UUID and
what other secrets require updates.

Change-Id: If3ee74bc3487d2e7a15e5e909e6a23f2a66b0630
This commit is contained in:
Evgeny L 2018-12-19 21:15:32 +00:00
parent 2eb5877396
commit c34ca175ee
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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~