2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-02-16 10:39:23 +00:00

Change bound to 'tpm2'.

This is a bit more logical and flexible for the future.
This commit is contained in:
Jarrod Johnson 2020-07-01 13:33:59 -04:00
parent 8976ed9625
commit 22085e38f5
3 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ if [ -f "/run/install/cmdline.d/01-autocons.conf" ]; then
fi
cryptboot=$(grep ^encryptboot: /etc/confluent/confluent.deploycfg | awk '{print $2}')
LUKSPARTY=''
if [ "$cryptboot" == "bound" ]; then
if [ "$cryptboot" == "tpm2" ]; then
LUKSPARTY="--encrypted --passphrase=$(cat /etc/confluent/confluent.apikey)"
echo $cryptboot >> /tmp/cryptboot
fi

View File

@ -43,7 +43,7 @@ if [ -f "/run/install/cmdline.d/01-autocons.conf" ]; then
fi
cryptboot=$(grep ^encryptboot: /etc/confluent/confluent.deploycfg | awk '{print $2}')
LUKSPARTY=''
if [ "$cryptboot" == "bound" ]; then
if [ "$cryptboot" == "tpm2" ]; then
LUKSPARTY="--encrypted --passphrase=$(cat /etc/confluent/confluent.apikey)"
echo $cryptboot >> /tmp/cryptboot
fi

View File

@ -111,11 +111,11 @@ node = {
'description': ('Specify a strategy for encrypting the volume. Support '
'This setting is currently only enabled for '
'RedHat 8 and CentOS 8 profiles. If blank or unset, '
'no encryption is done. If set to "bound" then the OS '
'no encryption is done. If set to "tpm2" then the OS '
'will freely decrypt so long as the same '
'Trusted Platform Module is available to decrypt the '
'volume'),
'validvalues': ('bound', 'none', ''),
'validvalues': ('tpm2', 'none', ''),
},
'deployment.apiarmed': {
'description': ('Indicates whether the node authentication token interface '