Merge "Fix placement dependencies to work with mysql's ed25519" into stable/train

This commit is contained in:
Zuul 2020-04-03 14:30:19 +00:00 committed by Gerrit Code Review
commit 38709847c5
1 changed files with 4 additions and 1 deletions

View File

@ -347,7 +347,10 @@ gpgcheck=0' >> /etc/yum.repos.d/opendaylight.repo
# Required to allow the mysql-migrate-db.sh data extraction script to be used
# during an upgrade.
{% set placement_api_packages_append = ['mariadb'] %}
# LP #1866093: placement calls the mysql CLI directly, and when
# users are configured to authenticate via ed25519, mysql CLI
# requires client_ed25519.so, which is provided by mariadb-server
{% set placement_api_packages_append = ['mariadb', 'mariadb-server'] %}
{# rabbitmq #}