Skip to content

Commit 7a66fc7

Browse files
authored
Merge pull request #224 from stackhpc/upstream/yoga-2023-05-15
Synchronise yoga with upstream
2 parents 79d45fa + a6b6e65 commit 7a66fc7

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

docker/base/httpd_setup.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ if [[ "$(whoami)" == 'root' ]]; then
2424
# on startup:
2525
# SSLCertificateFile: file '/etc/pki/tls/certs/localhost.crt' does not exist or is empty
2626
# Work around this by generating certificates manually.
27+
# NOTE(mnasiadka): in EL9 upgrade jobs gencerts is failing on wrong permissions to dhparams.pem
2728
if [[ "${KOLLA_BASE_DISTRO}" =~ centos|rocky ]] && [[ ! -e /etc/pki/tls/certs/localhost.crt ]]; then
29+
rm -f /tmp/dhparams.pem
2830
/usr/libexec/httpd-ssl-gencerts
2931
fi
3032
fi

docker/fluentd/Dockerfile.j2

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
3131

3232
{{ macros.configure_user(name=fluentd_user, groups='mysql') }}
3333

34-
# NOTE(frickler): Downgrading elasticsearch gems for compatibility with OSS versions of ES
35-
{{ macros.install_packages(fluentd_packages | customizable("packages")) }} \
36-
&& td-agent-gem install elasticsearch:7.13.0 \
37-
&& td-agent-gem uninstall "elasticsearch:>7.13.0" \
38-
&& td-agent-gem uninstall "elasticsearch-api:>7.13.0" \
39-
&& td-agent-gem uninstall "elasticsearch-transport:>7.13.0"
34+
{{ macros.install_packages(fluentd_packages | customizable("packages")) }}
4035

4136
COPY fluentd_sudoers /etc/sudoers.d/kolla_fluentd_sudoers
4237

@@ -57,7 +52,13 @@ RUN chmod 755 /usr/local/bin/kolla_extend_start
5752
'fluent-plugin-rewrite-tag-filter',
5853
] %}
5954

60-
{{ macros.install_fluent_plugins(fluentd_plugins | customizable("plugins")) }}
55+
{# NOTE(frickler): Downgrading elasticsearch gems for compatibility with OSS versions of ES #}
56+
{{ macros.install_fluent_plugins(fluentd_plugins | customizable("plugins")) }} \
57+
&& td-agent-gem install elasticsearch:7.13.0 \
58+
&& td-agent-gem uninstall "elasticsearch:>7.13.0" \
59+
&& td-agent-gem uninstall "elasticsearch-api:>7.13.0" \
60+
&& td-agent-gem uninstall "elasticsearch-transport:>7.13.0" \
61+
&& td-agent-gem uninstall "elastic-transport:>7.13.0"
6162

6263
{% endblock %}
6364

docker/neutron/neutron-base/Dockerfile.j2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
1414
{% if base_package_type == 'rpm' %}
1515

1616
{% set neutron_base_packages = [
17+
'iproute-tc',
1718
'iputils',
1819
'keepalived',
1920
'net-tools',
@@ -54,6 +55,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
5455
'dnsmasq',
5556
'dnsmasq-utils',
5657
'haproxy',
58+
'iproute-tc',
5759
'ipset',
5860
'iptables',
5961
'iputils',

docker/nova/nova-compute/Dockerfile.j2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ RUN rm -f /etc/nova/nova-compute.conf
111111
'python3-libvirt',
112112
'python3-rtslib',
113113
'qemu-img',
114+
'qemu-kvm-block-rbd',
114115
'sysfsutils',
115116
'targetcli',
116117
'xfsprogs'
@@ -149,6 +150,7 @@ RUN rm -f /etc/nova/nova-compute.conf
149150
'python3-rados',
150151
'python3-rbd',
151152
'python3-rtslib-fb',
153+
'qemu-block-extra',
152154
'qemu-utils',
153155
'sasl2-bin',
154156
'sysfsutils',

0 commit comments

Comments
 (0)