Enable stable/train reviews

We need to update .gitreview to use the stable/train branch, and
the different sources to use train-based content, instead of master.

Change-Id: I2f7231c2fabf12d13535789cf7704f8d93343ce5
This commit is contained in:
Javier Pena 2019-10-08 13:14:01 +02:00
parent 000b695f9e
commit 849dc622a1
4 changed files with 30 additions and 29 deletions

View File

@ -2,3 +2,4 @@
host=review.opendev.org
port=29418
project=x/packstack.git
defaultbranch=stable/train

View File

@ -4,99 +4,99 @@ moduledir '/usr/share/openstack-puppet/modules'
mod 'aodh',
:git => 'https://github.com/openstack/puppet-aodh',
:ref => 'master'
:ref => 'stable/train'
mod 'ceilometer',
:git => 'https://github.com/openstack/puppet-ceilometer',
:ref => 'master'
:ref => 'stable/train'
mod 'cinder',
:git => 'https://github.com/openstack/puppet-cinder',
:ref => 'master'
:ref => 'stable/train'
mod 'glance',
:git => 'https://github.com/openstack/puppet-glance',
:ref => 'master'
:ref => 'stable/train'
mod 'gnocchi',
:git => 'https://github.com/openstack/puppet-gnocchi',
:ref => 'master'
:ref => 'stable/train'
mod 'heat',
:git => 'https://github.com/openstack/puppet-heat',
:ref => 'master'
:ref => 'stable/train'
mod 'magnum',
:git => 'https://github.com/openstack/puppet-magnum',
:ref => 'master'
:ref => 'stable/train'
mod 'horizon',
:git => 'https://github.com/openstack/puppet-horizon',
:ref => 'master'
:ref => 'stable/train'
mod 'ironic',
:git => 'https://github.com/openstack/puppet-ironic',
:ref => 'master'
:ref => 'stable/train'
mod 'keystone',
:git => 'https://github.com/openstack/puppet-keystone',
:ref => 'master'
:ref => 'stable/train'
mod 'manila',
:git => 'https://github.com/openstack/puppet-manila',
:ref => 'master'
:ref => 'stable/train'
mod 'neutron',
:git => 'https://github.com/openstack/puppet-neutron',
:ref => 'master'
:ref => 'stable/train'
mod 'nova',
:git => 'https://github.com/openstack/puppet-nova',
:ref => 'master'
:ref => 'stable/train'
mod 'openstack_extras',
:git => 'https://github.com/openstack/puppet-openstack_extras',
:ref => 'master'
:ref => 'stable/train'
mod 'openstacklib',
:git => 'https://github.com/openstack/puppet-openstacklib',
:ref => 'master'
:ref => 'stable/train'
mod 'oslo',
:git => 'https://github.com/openstack/puppet-oslo',
:ref => 'master'
:ref => 'stable/train'
mod 'ovn',
:git => 'https://github.com/openstack/puppet-ovn',
:ref => 'master'
:ref => 'stable/train'
mod 'panko',
:git => 'https://github.com/openstack/puppet-panko',
:ref => 'master'
:ref => 'stable/train'
mod 'placement',
:git => 'https://github.com/openstack/puppet-placement',
:ref => 'master'
:ref => 'stable/train'
mod 'sahara',
:git => 'https://github.com/openstack/puppet-sahara',
:ref => 'master'
:ref => 'stable/train'
mod 'swift',
:git => 'https://github.com/openstack/puppet-swift',
:ref => 'master'
:ref => 'stable/train'
mod 'tempest',
:git => 'https://github.com/openstack/puppet-tempest',
:ref => 'master'
:ref => 'stable/train'
mod 'trove',
:git => 'https://github.com/openstack/puppet-trove',
:ref => 'master'
:ref => 'stable/train'
mod 'vswitch',
:git => 'https://github.com/openstack/puppet-vswitch',
:ref => 'master'
:ref => 'stable/train'
## Non-OpenStack modules

View File

@ -1,8 +1,8 @@
- hosts: compute
name: setup RDO Trunk repositories
vars:
delorean: "https://trunk.rdoproject.org/centos7-master/current-passed-ci/delorean.repo"
delorean_deps: "https://trunk.rdoproject.org/centos7-master/delorean-deps.repo"
delorean: "https://trunk.rdoproject.org/centos7-train/current-tripleo/delorean.repo"
delorean_deps: "https://trunk.rdoproject.org/centos7-train/delorean-deps.repo"
tasks:
- name: Fetch DLRN repo
get_url:

View File

@ -17,13 +17,13 @@ export PATH=$PATH:/usr/local/sbin:/usr/sbin
SCENARIO=${SCENARIO:-scenario001}
BRANCH=master
BRANCH=stable/train
# We could want to override the default repositories or install behavior
INSTALL_FROM_SOURCE=${INSTALL_FROM_SOURCE:-true}
MANAGE_REPOS=${MANAGE_REPOS:-true}
DELOREAN=${DELOREAN:-https://trunk.rdoproject.org/centos7-master/current-passed-ci/delorean.repo}
DELOREAN_DEPS=${DELOREAN_DEPS:-https://trunk.rdoproject.org/centos7-master/delorean-deps.repo}
DELOREAN=${DELOREAN:-https://trunk.rdoproject.org/centos7-train/current-tripleo/delorean.repo}
DELOREAN_DEPS=${DELOREAN_DEPS:-https://trunk.rdoproject.org/centos7-train/delorean-deps.repo}
GIT_BASE_URL=${GIT_BASE_URL:-https://git.openstack.org}
ADDITIONAL_ARGS=${ADDITIONAL_ARGS:-}
SELINUX_ENFORCING=${SELINUX_ENFORCING:-true}