d34147b84b
The MariaDB role HAProxy config section exposes MariaDB on the mariadb_port which may not always be the same as database_port. The HAProxy role checks that the database_port is free, and not the mariadb_port. This could mean that the check passes, but the actual port which HAProxy will attempt to use is taken. This change configures HAProxy to talk to the MariaDB instances on the mariadb_port, and maps them to the database_port which is used by most services as part of the DB connection string. There is a small risk that it may break someones override config. Change-Id: I9507ee709cb21eb743112107770ed3170c61ef74
8 lines
361 B
YAML
8 lines
361 B
YAML
---
|
|
upgrade:
|
|
- MariaDB is now exposed via HAProxy on the ``database_port`` and
|
|
not the ``mariadb_port``. Out of the box these are both the same,
|
|
but if you have customised ``mariadb_port`` so that it is different
|
|
to the ``database_port`` and you have a service talking to it
|
|
via HAProxy on that port then you should review your configuration.
|