diff --git a/docker/base/Dockerfile.j2 b/docker/base/Dockerfile.j2 index 37e08409d2..e3258cfabc 100644 --- a/docker/base/Dockerfile.j2 +++ b/docker/base/Dockerfile.j2 @@ -368,6 +368,7 @@ COPY apt_preferences /etc/apt/preferences.d/kolla-custom {% elif base_distro == 'debian' %} {% set base_apt_keys = [ '46095ACC8548582C1A2699A9D27D666CD88E42B4', + 'F1656F24C74CD1D8', 'F77F1EDA57EBB1CC', 'F6609E60DC62814E', ] %} diff --git a/kolla/template/repos.yaml b/kolla/template/repos.yaml index cb11657b2c..e2ebd0d60c 100644 --- a/kolla/template/repos.yaml +++ b/kolla/template/repos.yaml @@ -55,6 +55,7 @@ debian: influxdb: "deb https://repos.influxdata.com/debian buster stable" logstash: "deb [arch=amd64] https://artifacts.elastic.co/packages/oss-6.x/apt stable main" kibana: "deb [arch=amd64] https://artifacts.elastic.co/packages/oss-6.x/apt stable main" + mariadb: "deb http://downloads.mariadb.com/MariaDB/mariadb-10.3/repo/debian buster main" rabbitmq: "deb https://packagecloud.io/rabbitmq/rabbitmq-server/debian/ buster main" td-agent: "deb http://packages.treasuredata.com/4/debian/buster buster contrib" @@ -66,6 +67,7 @@ debian-aarch64: logstash: "deb [arch=amd64] https://artifacts.elastic.co/packages/oss-6.x/apt stable main" kibana: "deb [arch=amd64] https://artifacts.elastic.co/packages/oss-6.x/apt stable main" libvirt: "deb https://obs.linaro.org/repos/home:/marcin.juszkiewicz/debian-buster ./" + mariadb: "deb http://downloads.mariadb.com/MariaDB/mariadb-10.3/repo/debian buster main" rabbitmq: "deb https://packagecloud.io/rabbitmq/rabbitmq-server/debian/ buster main" td-agent: "deb http://packages.treasuredata.com/4/debian/buster buster contrib" diff --git a/releasenotes/notes/debian-mariadb-upstream-75e05cbdaa013abe.yaml b/releasenotes/notes/debian-mariadb-upstream-75e05cbdaa013abe.yaml new file mode 100644 index 0000000000..bd92fedc73 --- /dev/null +++ b/releasenotes/notes/debian-mariadb-upstream-75e05cbdaa013abe.yaml @@ -0,0 +1,10 @@ +--- +upgrade: + - | + Debian now uses upstream MariaDB repos (thus following Ubuntu + images). This is done to avoid issues like the related one and + have an easy workaround of pinning to chosen MariaDB version if + need arises. + Operators may want to reflect this in their repo mirrors and + proxies. + `LP#1944410 `__