This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-6-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 43720fb18a239b650c120ed3639093057ef36c3c Author: Jarek Potiuk <[email protected]> AuthorDate: Thu Jul 6 17:28:29 2023 +0200 Add information on ARM MySQL support in Docker images (#32401) The change #29519 added experimental MariaDB client support for MySQL for ARM images but we missed that in the changelog. (cherry picked from commit ef75a3a6757a033586c933f7b62ab86f846af754) --- docs/docker-stack/changelog.rst | 1 + docs/docker-stack/index.rst | 25 +++++++++++++++++-------- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/docs/docker-stack/changelog.rst b/docs/docker-stack/changelog.rst index b40c0ae68f..619dfd9e74 100644 --- a/docs/docker-stack/changelog.rst +++ b/docs/docker-stack/changelog.rst @@ -107,6 +107,7 @@ Airflow 2.3 This can be done by setting ``DOCKER_BUILDKIT=1`` as an environment variable or by installing `the buildx plugin <https://docs.docker.com/buildx/working-with-buildx/>`_ and running ``docker buildx build`` command. + * MySQL is experimentally supported on ARM through MariaDB client library * Add Python 3.10 support * Switch to ``Debian Bullseye`` based images. ``Debian Buster`` is deprecated and only available for customized image building. diff --git a/docs/docker-stack/index.rst b/docs/docker-stack/index.rst index d54c374b70..5866f444e8 100644 --- a/docs/docker-stack/index.rst +++ b/docs/docker-stack/index.rst @@ -124,14 +124,23 @@ Support The reference Docker Image supports the following platforms and database: -* Intel platform (x86_64) - * Postgres Client - * MySQL Client - * MSSQL Client - -* ARM platform (aarch64) - experimental support, might change any time - * Postgres Client - * MSSQL Client +Intel platform (x86_64) +----------------------- + +* Postgres Client +* MySQL Client +* MSSQL Client + +ARM platform (aarch64) +---------------------- + +ARM support is experimental, might change any time. + +* Postgres Client +* MySQL Client (MySQL 8) +* MSSQL Client + +Note that MySQL on arm has experimental support through MariaDB client library. Usage =====
