Skip to content

Commit d730247

Browse files
committed
Merge remote-tracking branch 'upstream/stable/victoria' into sync/stable/victoria
2 parents a30840c + 32eb32f commit d730247

24 files changed

+125
-86
lines changed

doc/source/contributor/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Communication
2222
~~~~~~~~~~~~~
2323

2424
IRC Channel
25-
``#openstack-kolla`` (`channel logs`_) on Freenode
25+
``#openstack-kolla`` (`channel logs`_) on `OFTC <http://oftc.net>`_
2626

2727
Weekly Meetings
2828
On Wednesdays at 15:00 UTC in the IRC channel (`meetings logs`_)

docker/base/Dockerfile.j2

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ COPY dnf.conf /etc/dnf/dnf.conf
8686
'https://artifacts.elastic.co/GPG-KEY-elasticsearch',
8787
'https://packages.grafana.com/gpg.key',
8888
'https://repos.influxdata.com/influxdb.key',
89-
'https://www.rabbitmq.com/rabbitmq-release-signing-key.asc',
89+
'https://github.com/rabbitmq/signing-keys/releases/download/2.0/rabbitmq-release-signing-key.asc',
9090
'https://packages.treasuredata.com/GPG-KEY-td-agent',
9191
] %}
9292
{% elif base_arch == 'aarch64' %}
@@ -99,8 +99,7 @@ COPY dnf.conf /etc/dnf/dnf.conf
9999

100100
{% set base_yum_repo_keys = [
101101
'https://packages.grafana.com/gpg.key',
102-
'https://www.rabbitmq.com/rabbitmq-release-signing-key.asc',
103-
'https://obs.linaro.org/repos/home:/marcin.juszkiewicz/centos7/repodata/repomd.xml.key',
102+
'https://github.com/rabbitmq/signing-keys/releases/download/2.0/rabbitmq-release-signing-key.asc',
104103
] %}
105104
# FIXME(mgoddard): Not available for CentOS 8 yet.
106105
#
@@ -342,6 +341,8 @@ COPY apt_preferences /etc/apt/preferences.d/kolla-custom
342341
{# 901F9177AB97ACBE -- Treasure Data, Inc (Treasure Agent Official Signing key) <[email protected]> #}
343342
{# A20F259AEB9C94BB -- Sensuapp (Freight) <[email protected]> #}
344343
{# F1656F24C74CD1D8 -- MariaDB Signing Key <[email protected]> #}
344+
{# F77F1EDA57EBB1CC -- Launchpad RabbitMQ Erlang PPA key #}
345+
{# F6609E60DC62814E -- PackageCloud RabbitMQ repository key #}
345346
{% set base_apt_keys = [
346347
'391A9AA2147192839E9DB0315EDB1B62EC4926EA',
347348
'46095ACC8548582C1A2699A9D27D666CD88E42B4',
@@ -351,20 +352,18 @@ COPY apt_preferences /etc/apt/preferences.d/kolla-custom
351352
'901F9177AB97ACBE',
352353
'A20F259AEB9C94BB',
353354
'F1656F24C74CD1D8',
355+
'F77F1EDA57EBB1CC',
356+
'F6609E60DC62814E',
354357
] %}
355358
{% set remote_apt_keys = [
356-
'https://www.rabbitmq.com/rabbitmq-release-signing-key.asc',
357359
'https://packages.grafana.com/gpg.key',
358360
'https://repos.influxdata.com/influxdb.key',
359361
] %}
360-
{% if base_arch == 'aarch64' %}
361-
{% set remote_apt_keys = remote_apt_keys + [
362-
'https://obs.linaro.org/repos/home:/marcin.juszkiewicz/ubuntu-bionic/Release.key',
363-
] %}
364-
{% endif %}
365362
{% elif base_distro == 'debian' %}
366363
{% set base_apt_keys = [
367364
'46095ACC8548582C1A2699A9D27D666CD88E42B4',
365+
'F77F1EDA57EBB1CC',
366+
'F6609E60DC62814E',
368367
] %}
369368
{% set remote_apt_keys = [
370369
'https://download.docker.com/linux/debian/gpg',
@@ -373,13 +372,7 @@ COPY apt_preferences /etc/apt/preferences.d/kolla-custom
373372
'https://packages.treasuredata.com/GPG-KEY-td-agent',
374373
'https://repos.influxdata.com/influxdb.key',
375374
'https://obs.linaro.org/repos/home:/marcin.juszkiewicz/debian-buster/Release.key',
376-
'https://www.rabbitmq.com/rabbitmq-release-signing-key.asc',
377375
] %}
378-
{% if base_arch == 'aarch64' %}
379-
{% set remote_apt_keys = remote_apt_keys + [
380-
'https://obs.linaro.org/repos/home:/marcin.juszkiewicz/debian-buster/Release.key',
381-
] %}
382-
{% endif %}
383376
{% set base_apt_packages = base_apt_packages +
384377
['sudo',]
385378
%}

docker/base/apt_preferences.ubuntu

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
Package: rabbitmq-server
22
Pin: version 3.8.*
33
Pin-Priority: 1000
4+
5+
Package: erlang*
6+
Pin: version 1:23.*
7+
Pin-Priority: 1000
8+
9+
# FIXME(mgoddard): Pinning to 4.0.* to avoid bug 1930867.
10+
Package: td-agent*
11+
Pin: version 4.0.*
12+
Pin-Priority: 1000
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[rabbitmq_rabbitmq-erlang]
22
name=rabbitmq_rabbitmq-erlang
3-
baseurl=https://dl.bintray.com/rabbitmq-erlang/rpm/erlang/22/el/$releasever/
3+
baseurl=https://packagecloud.io/rabbitmq/erlang/el/8/$basearch
44
gpgcheck=1
55
enabled=0
6-
gpgkey=https://www.rabbitmq.com/rabbitmq-release-signing-key.asc
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[rabbitmq_rabbitmq-server]
22
name=rabbitmq_rabbitmq-server
3-
baseurl=https://dl.bintray.com/rabbitmq/rpm/rabbitmq-server/v3.8.x/el/$releasever/
3+
baseurl=https://packagecloud.io/rabbitmq/rabbitmq-server/el/8/$basearch
44
gpgcheck=1
55
enabled=0
6-
gpgkey=https://www.rabbitmq.com/rabbitmq-release-signing-key.asc

docker/base/sources.list.debian

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ deb http://deb.debian.org/debian buster main
44
# debian security updates
55
deb http://security.debian.org/debian-security buster/updates main
66

7+
# debian updates
8+
deb http://deb.debian.org/debian buster-updates main
9+
710
# debian backports
811
deb http://deb.debian.org/debian buster-backports main
912

@@ -31,6 +34,3 @@ deb http://buster-victoria.debian.net/debian buster-victoria-backports-nochange
3134

3235
# erlang repo
3336
#deb https://dl.bintray.com/rabbitmq-erlang/debian/ buster erlang
34-
35-
# erlang repo - aarch64 only
36-
#deb https://obs.linaro.org/repos/home:/marcin.juszkiewicz/debian-buster ./

docker/base/sources.list.ubuntu

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,10 @@ deb http://ubuntu-cloud.archive.canonical.com/ubuntu focal-updates/victoria main
3434
#deb http://ppa.launchpad.net/qpid/released/ubuntu/ focal main
3535

3636
# rabbitmq repo
37-
#deb https://dl.bintray.com/rabbitmq/debian/ focal main
37+
#deb https://packagecloud.io/rabbitmq/rabbitmq-server/ubuntu/ focal main
3838

3939
# erlang repo
40-
#deb https://dl.bintray.com/rabbitmq-erlang/debian/ focal erlang
41-
42-
# erlang repo - aarch64 only
43-
#deb https://obs.linaro.org/repos/home:/marcin.juszkiewicz/ubuntu-focal ./
40+
#deb http://ppa.launchpad.net/rabbitmq/rabbitmq-erlang/ubuntu focal main
4441

4542
# MariaDB repo
4643
#deb http://downloads.mariadb.com/MariaDB/mariadb-10.3/repo/ubuntu focal main

docker/fluentd/Dockerfile.j2

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ LABEL fluentd_version="0.14" fluentd_binary="td-agent"
2727
] %}
2828

2929
{% if base_arch in ['aarch64', 'x86_64'] %}
30+
# FIXME(mgoddard): Pinning to 4.0.* to avoid bug 1930867.
3031
{% set fluentd_packages = fluentd_packages + [
31-
'td-agent'
32+
'td-agent-4.0.*'
3233
] %}
3334
{% else %}
3435
{% set fluentd_packages = fluentd_packages + [

docker/gnocchi/gnocchi-base/Dockerfile.j2

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,6 @@ RUN {{ macros.install_pip(gnocchi_base_pip_packages | customizable("pip_packages
5252
'librados2-devel',
5353
] %}
5454

55-
# on x86-64 pip grabs precompiled numpy/scipy - on aarch64/ppc64le
56-
# it needs to be built
57-
58-
{% if base_arch != 'x86_64' %}
59-
{% set gnocchi_base_packages = gnocchi_base_packages + [
60-
'blas-devel',
61-
'lapack-devel'
62-
] %}
63-
{% endif %}
64-
6555
{{ macros.install_packages(gnocchi_base_packages | customizable("packages")) }}
6656
RUN mkdir -p /var/www/cgi-bin/gnocchi
6757
{% elif base_package_type == 'deb' %}
@@ -70,16 +60,6 @@ RUN mkdir -p /var/www/cgi-bin/gnocchi
7060
'librados-dev',
7161
] %}
7262

73-
# on x86-64 pip grabs precompiled numpy/scipy - on aarch64/ppc64le
74-
# it needs to be built
75-
76-
{% if base_arch != 'x86_64' %}
77-
{% set gnocchi_base_packages = gnocchi_base_packages + [
78-
'libblas-dev',
79-
'liblapack-dev'
80-
] %}
81-
{% endif %}
82-
8363
{{ macros.install_packages(gnocchi_base_packages | customizable("packages")) }}
8464

8565
{% endif %}

docker/horizon/extend_start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function config_monasca_ui {
160160
"${SITE_PACKAGES}/openstack_dashboard/local/enabled/_50_admin_add_monitoring_panel.py"
161161
config_dashboard "${ENABLE_MONASCA:-no}" \
162162
"${SITE_PACKAGES}/monitoring/conf/monitoring_policy.json" \
163-
"${SITE_PACKAGES}/openstack_dashboard/conf/monitoring_policy.json"
163+
"/etc/openstack-dashboard/monitoring_policy.json"
164164
}
165165

166166
function config_murano_dashboard {

0 commit comments

Comments
 (0)