Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Very Demiurge Very Mindful
Kolla Ansible
Commits
723ca047
Commit
723ca047
authored
8 years ago
by
Jenkins
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Revert "Move RDO to Newton branches""
parents
bd8d6532
e714a745
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docker/base/Dockerfile.j2
+1
-4
1 addition, 4 deletions
docker/base/Dockerfile.j2
kolla/common/config.py
+1
-1
1 addition, 1 deletion
kolla/common/config.py
kolla/image/build.py
+1
-4
1 addition, 4 deletions
kolla/image/build.py
with
3 additions
and
9 deletions
docker/base/Dockerfile.j2
+
1
−
4
View file @
723ca047
...
...
@@ -80,7 +80,6 @@ RUN yum-config-manager --enable rhel-7-server-rpms \
RUN rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
{% set base_centos_yum_repo_keys = [
'/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Cloud',
'/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Storage',
'/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Virtualization'
] %}
...
...
@@ -89,7 +88,6 @@ RUN rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
'epel-release ',
'yum-plugin-priorities',
'centos-release-ceph-jewel',
'centos-release-openstack-newton',
'centos-release-qemu-ev'
] %}
...
...
@@ -127,14 +125,13 @@ RUN yum -y install \
yum-utils \
http://mirror.centos.org/centos-7/7/extras/x86_64/Packages/epel-release-7-6.noarch.rpm \
&& rpm -Uvh --nodeps \
http://
mirror
.centos.org/centos
-7
/7/
extras
/x86_64/
Packages
/centos-release-openstack-
newton
-1-
1
.el7.noarch.rpm \
http://
buildlogs
.centos.org/centos/7/
cloud
/x86_64/
openstack-mitaka
/centos-release-openstack-
mitaka
-1-
3
.el7.noarch.rpm \
http://mirror.centos.org/centos-7/7/extras/x86_64/Packages/centos-release-ceph-jewel-1.0-1.el7.centos.noarch.rpm \
http://mirror.centos.org/centos-7/7/extras/x86_64/Packages/centos-release-qemu-ev-1.0-1.el7.noarch.rpm \
http://mirror.centos.org/centos-7/7/extras/x86_64/Packages/centos-release-virt-common-1-1.el7.centos.noarch.rpm \
http://mirror.centos.org/centos-7/7/extras/x86_64/Packages/centos-release-storage-common-1-2.el7.centos.noarch.rpm \
&& sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS-*.repo \
&& rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 \
&& rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Cloud \
&& rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Storage \
&& rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Virtualization \
&& yum-config-manager --enable ol7_optional_latest ol7_addons \
...
...
This diff is collapsed.
Click to expand it.
kolla/common/config.py
+
1
−
1
View file @
723ca047
...
...
@@ -145,7 +145,7 @@ _BASE_OPTS = [
cfg
.
StrOpt
(
'
maintainer
'
,
default
=
'
Kolla Project (https://launchpad.net/kolla)
'
,
help
=
'
The MAINTAINER field
'
),
cfg
.
ListOpt
(
'
rpm_setup_config
'
,
cfg
.
ListOpt
(
'
rpm_setup_config
'
,
default
=
[
DELOREAN
,
DELOREAN_DEPS
],
help
=
(
'
Comma separated list of .rpm or .repo file(s)
'
'
or URL(s) to install before building containers
'
)),
cfg
.
StrOpt
(
'
apt_sources_list
'
,
help
=
(
'
Path to custom sources.list
'
)),
...
...
This diff is collapsed.
Click to expand it.
kolla/image/build.py
+
1
−
4
View file @
723ca047
...
...
@@ -511,10 +511,7 @@ class KollaWorker(object):
self
.
install_type
=
conf
.
install_type
self
.
tag
=
conf
.
tag
self
.
images
=
list
()
if
conf
.
rpm_setup_config
:
rpm_setup_config
=
filter
(
None
,
conf
.
rpm_setup_config
)
else
:
rpm_setup_config
=
list
()
rpm_setup_config
=
filter
(
None
,
conf
.
rpm_setup_config
)
self
.
rpm_setup
=
self
.
build_rpm_setup
(
rpm_setup_config
)
rh_base
=
[
'
fedora
'
,
'
centos
'
,
'
oraclelinux
'
,
'
rhel
'
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment