RETIRED, A tool for managing the repos required to use TripleO
Go to file
OpenDev Sysadmins ca9796a801 OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:36:06 +00:00
doc/source Add docs structure 2017-07-17 13:29:15 -06:00
tripleo_repos Add stable/stein branch support to fedora 2019-03-28 14:51:36 -03:00
.gitignore Switch to stestr 2018-07-16 09:32:24 +07:00
.gitreview OpenDev Migration Patch 2019-04-19 19:36:06 +00:00
.stestr.conf Switch to stestr 2018-07-16 09:32:24 +07:00
.zuul.yaml Trigger build containers when tripleo-repos is modified 2019-02-28 10:43:06 +00:00
CONTRIBUTING.rst Add docs structure 2017-07-17 13:29:15 -06:00
LICENSE Add LICENSE 2016-06-10 17:26:55 +00:00
README.rst Fix broken link in readme 2018-03-09 16:39:58 +00:00
requirements.txt Switch to stestr 2018-07-16 09:32:24 +07:00
setup.cfg Trigger build containers when tripleo-repos is modified 2019-02-28 10:43:06 +00:00
setup.py Add docs structure 2017-07-17 13:29:15 -06:00
test-requirements.txt Switch to stestr 2018-07-16 09:32:24 +07:00
tox.ini Don't quote {posargs} in tox.ini 2018-10-09 14:31:43 +05:30

tripleo-repos

A tool for managing tripleo repos from places like RDO Trunk and Ceph.

See: https://blogs.rdoproject.org/2016/04/newbie-in-rdo-2-rdo-trunk-from-a-bird-s-eye-view/

Also ensures yum-plugin-priorities is installed since the RDO Trunk repos require that to work sanely.

Note

The tool will remove any delorean* repos at the target location to avoid conflicts with older repos. This means you must specify all of the repos you want to enable in one tripleo-repos call.

Examples

Install current master RDO Trunk repo and the deps repo:

tripleo-repos current

Install current-tripleo RDO Trunk repo and the deps repo:

tripleo-repos current-tripleo

Install the current-tripleo-dev repo. This will also pull current and deps, and will adjust the priorities of each repo appropriately:

tripleo-repos current-tripleo-dev

Install the mitaka RDO Trunk repo and deps:

tripleo-repos -b mitaka current

Write repos to a different path:

tripleo-repos -o ~/test-repos current

Install the current-tripleo, deps, and ceph repos. NOTE: The Ceph repo is installed from a package and thus does not respect -o:

tripleo-repos current-tripleo ceph

TripleO

To use this for TripleO development, replace the tripleo.sh --repo-setup step with the following:

git clone https://github.com/cybertron/tripleo-repos
cd tripleo-repos
sudo ./setup.py install
sudo tripleo-repos current-tripleo-dev ceph

Now you're ready to install the undercloud:

tripleo.sh --undercloud

And to build images:

export OVERCLOUD_IMAGES_DIB_YUM_REPO_CONF="$(ls /etc/yum.repos.d/delorean* /etc/yum.repos.d/CentOS-Ceph-*)"
tripleo.sh --overcloud-images

Note

This is a tool for bootstrapping the repo setup for TripleO, so it should not have any runtime OpenStack dependencies or we end up in a chicken-and-egg pickle, and let's be honest - no one wants a chicken and egg pickle.