CentOS/Rocky: use CentOS Cloud SIG repo instead of Delorean (Dalmatian)
Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/933312 Change-Id: I0ce9e907594fd160a08ad7929d5bc4bca9abf536
This commit is contained in:
parent
830500bb55
commit
db0f87d3c8
@ -129,8 +129,7 @@ RUN rm -f /etc/rpm/macros.image-language-conf \
|
|||||||
] %}
|
] %}
|
||||||
|
|
||||||
{% set base_centos_yum_repo_packages = [
|
{% set base_centos_yum_repo_packages = [
|
||||||
'centos-release-ceph-reef',
|
'centos-release-openstack-dalmatian',
|
||||||
'centos-release-nfv-openvswitch',
|
|
||||||
'centos-release-opstools',
|
'centos-release-opstools',
|
||||||
'epel-release',
|
'epel-release',
|
||||||
] %}
|
] %}
|
||||||
@ -149,24 +148,13 @@ RUN rm -f /etc/rpm/macros.image-language-conf \
|
|||||||
'centos-ceph-reef',
|
'centos-ceph-reef',
|
||||||
'centos-nfv-openvswitch',
|
'centos-nfv-openvswitch',
|
||||||
'centos-opstools',
|
'centos-opstools',
|
||||||
'centos9-nfv-ovs',
|
'centos-rabbitmq-38',
|
||||||
'centos9-opstools',
|
|
||||||
'centos9-rabbitmq',
|
|
||||||
'centos9-storage',
|
|
||||||
'epel',
|
'epel',
|
||||||
'influxdb',
|
'influxdb',
|
||||||
'opensearch-2.x',
|
'opensearch-2.x',
|
||||||
'opensearch-dashboards-2.x',
|
'opensearch-dashboards-2.x',
|
||||||
] %}
|
] %}
|
||||||
|
|
||||||
{% if base_arch == 'aarch64' %}
|
|
||||||
|
|
||||||
{# NOTE(hrw): delorean-deps.repo may force x86-64 repos #}
|
|
||||||
|
|
||||||
RUN sed -i -e "s/x86_64/aarch64/g" /etc/yum.repos.d/delorean-deps.repo
|
|
||||||
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
RUN {{ macros.install_packages(base_centos_yum_repo_packages | customizable("centos_yum_repo_packages"), chain=True, clean=False) }}
|
RUN {{ macros.install_packages(base_centos_yum_repo_packages | customizable("centos_yum_repo_packages"), chain=True, clean=False) }}
|
||||||
|
|
||||||
{%- for repo in base_centos_yum_repos_to_enable | customizable('centos_yum_repos_to_enable') %} && dnf config-manager --enable {{ repo }} {% endfor -%}
|
{%- for repo in base_centos_yum_repos_to_enable | customizable('centos_yum_repos_to_enable') %} && dnf config-manager --enable {{ repo }} {% endfor -%}
|
||||||
|
@ -53,6 +53,14 @@ enabled=0
|
|||||||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-NFV
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-NFV
|
||||||
module_hotfixes=1
|
module_hotfixes=1
|
||||||
|
|
||||||
|
[centos-openstack-dalmatian]
|
||||||
|
name=(OpenDev mirror) CentOS-$releasever - OpenStack Dalmatian
|
||||||
|
baseurl=http://MIRROR/centos-stream/SIGs/$stream/cloud/$basearch/openstack-dalmatian/
|
||||||
|
gpgcheck=1
|
||||||
|
enabled=1
|
||||||
|
gpgkey=https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-Cloud
|
||||||
|
module_hotfixes=1
|
||||||
|
|
||||||
[centos-opstools]
|
[centos-opstools]
|
||||||
name=(OpenDev mirror) CentOS Stream $releasever - OpsTools - collectd
|
name=(OpenDev mirror) CentOS Stream $releasever - OpsTools - collectd
|
||||||
baseurl=http://MIRROR/centos-stream/SIGs/$stream/opstools/$basearch/collectd-5/
|
baseurl=http://MIRROR/centos-stream/SIGs/$stream/opstools/$basearch/collectd-5/
|
||||||
|
@ -13,6 +13,14 @@ enabled=0
|
|||||||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-NFV
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-NFV
|
||||||
module_hotfixes=1
|
module_hotfixes=1
|
||||||
|
|
||||||
|
[centos-openstack-dalmatian]
|
||||||
|
name=(OpenDev mirror) CentOS-$releasever - OpenStack Dalmatian
|
||||||
|
baseurl=http://MIRROR/centos-stream/SIGs/$stream/cloud/$basearch/openstack-dalmatian/
|
||||||
|
gpgcheck=1
|
||||||
|
enabled=1
|
||||||
|
gpgkey=https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-Cloud
|
||||||
|
module_hotfixes=1
|
||||||
|
|
||||||
[centos-opstools]
|
[centos-opstools]
|
||||||
name=(OpenDev mirror) CentOS Stream $releasever - OpsTools - collectd
|
name=(OpenDev mirror) CentOS Stream $releasever - OpsTools - collectd
|
||||||
baseurl=http://MIRROR/centos-stream/SIGs/$stream/opstools/$basearch/collectd-5/
|
baseurl=http://MIRROR/centos-stream/SIGs/$stream/opstools/$basearch/collectd-5/
|
||||||
|
@ -39,10 +39,6 @@ DISTRO_PRETTY_NAME = {
|
|||||||
}
|
}
|
||||||
OPENSTACK_RELEASE = 'master'
|
OPENSTACK_RELEASE = 'master'
|
||||||
|
|
||||||
# This is noarch repository so we will use it on all architectures
|
|
||||||
DELOREAN_DEPS = "https://trunk.rdoproject.org/centos9-dalmatian/" \
|
|
||||||
"delorean-deps.repo"
|
|
||||||
|
|
||||||
# TODO(mandre) check for file integrity instead of downloading from an HTTPS
|
# TODO(mandre) check for file integrity instead of downloading from an HTTPS
|
||||||
# source
|
# source
|
||||||
TARBALLS_BASE = "https://tarballs.opendev.org"
|
TARBALLS_BASE = "https://tarballs.opendev.org"
|
||||||
@ -282,7 +278,7 @@ _BASE_OPTS = [
|
|||||||
help=('Set the package type of the distro. If not set then '
|
help=('Set the package type of the distro. If not set then '
|
||||||
'the packaging type is set to "rpm" if a RHEL based '
|
'the packaging type is set to "rpm" if a RHEL based '
|
||||||
'distro and "deb" if a Debian based distro.')),
|
'distro and "deb" if a Debian based distro.')),
|
||||||
cfg.ListOpt('rpm_setup_config', default=[DELOREAN_DEPS],
|
cfg.ListOpt('rpm_setup_config', default=[],
|
||||||
help=('Comma separated list of .rpm or .repo file(s) '
|
help=('Comma separated list of .rpm or .repo file(s) '
|
||||||
'or URL(s) to install before building containers')),
|
'or URL(s) to install before building containers')),
|
||||||
cfg.StrOpt('apt_sources_list', help=('Path to custom sources.list')),
|
cfg.StrOpt('apt_sources_list', help=('Path to custom sources.list')),
|
||||||
|
5
releasenotes/notes/rdo-dalmatian-bab7a517c219cb23.yaml
Normal file
5
releasenotes/notes/rdo-dalmatian-bab7a517c219cb23.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
RHEL derivates images now use RDO Dalmatian release for OpenStack services
|
||||||
|
dependencies.
|
@ -50,15 +50,6 @@ RUN cd /etc/yum.repos.d/ && mkdir not-for-ci/ \
|
|||||||
{% endif %} {# if centos/rocky #}
|
{% endif %} {# if centos/rocky #}
|
||||||
|
|
||||||
{% raw %}
|
{% raw %}
|
||||||
{% block base_centos_repo_overrides_post_rpm %}
|
|
||||||
{% endraw %}
|
|
||||||
|
|
||||||
RUN sed -i \
|
|
||||||
-e "s|https://trunk.rdoproject.org|{{ nodepool_rdo_proxy }}|g" \
|
|
||||||
/etc/yum.repos.d/delorean*.repo
|
|
||||||
|
|
||||||
{% raw %}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block base_centos_repo_overrides_post_yum -%}
|
{% block base_centos_repo_overrides_post_yum -%}
|
||||||
{%- endraw -%}
|
{%- endraw -%}
|
||||||
@ -113,10 +104,7 @@ RUN if [ -d /etc/yum.repos.d/not-for-ci/ ]; then \
|
|||||||
rm ci-{{ base_distro }}.repo && \
|
rm ci-{{ base_distro }}.repo && \
|
||||||
mv not-for-ci/*.repo . && \
|
mv not-for-ci/*.repo . && \
|
||||||
rm -rf not-for-ci; \
|
rm -rf not-for-ci; \
|
||||||
fi; \
|
fi
|
||||||
sed -i \
|
|
||||||
-e "s|{{ nodepool_rdo_proxy }}|https://trunk.rdoproject.org|g" \
|
|
||||||
/etc/yum.repos.d/delorean*.repo
|
|
||||||
{% elif base_distro == "debian" %}
|
{% elif base_distro == "debian" %}
|
||||||
RUN sed -i -e "s|\[trusted=yes\] http://{{ nodepool_mirror_host }}|http://deb.debian.org|" \
|
RUN sed -i -e "s|\[trusted=yes\] http://{{ nodepool_mirror_host }}|http://deb.debian.org|" \
|
||||||
-e "s|\[trusted=yes\] http://{{ nodepool_mirror_host }}|http://security.debian.org|" \
|
-e "s|\[trusted=yes\] http://{{ nodepool_mirror_host }}|http://security.debian.org|" \
|
||||||
|
Loading…
Reference in New Issue
Block a user