Keystone: always update service account passwords on chart deploy
This PS allows an operator to change the service account password though the values fed into a chart. Change-Id: If3a859f0db84237c71303ef329573c7d6aafdae7
This commit is contained in:
parent
a02d22a284
commit
4734cf53c8
@ -46,6 +46,9 @@ SERVICE_OS_USERID=$(openstack user create --or-show --enable -f value -c id \
|
||||
--password="${SERVICE_OS_PASSWORD}" \
|
||||
"${SERVICE_OS_USERNAME}")
|
||||
|
||||
# Manage user password (we do this to ensure the password is updated if required)
|
||||
openstack user set --password="${SERVICE_OS_PASSWORD}" "${SERVICE_OS_USERID}"
|
||||
|
||||
# Display user
|
||||
openstack user show "${SERVICE_OS_USERID}"
|
||||
|
||||
|
@ -51,6 +51,9 @@ USER_ID=$(openstack user create --or-show --enable -f value -c id \
|
||||
--password="${SERVICE_OS_PASSWORD}" \
|
||||
"${SERVICE_OS_USERNAME}");
|
||||
|
||||
# Manage user password (we do this to ensure the password is updated if required)
|
||||
openstack user set --password="${SERVICE_OS_PASSWORD}" "${USER_ID}"
|
||||
|
||||
# Display user
|
||||
openstack user show "${USER_ID}"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user