17634 Commits

Author SHA1 Message Date
Hervé Beraud
13ecbd6030 Release Oslo for Xena
Reviewer note:
Deprecated options have been removed from oslo.db this is why a major
version is required.

Change-Id: Iaaeeb0b029db04958eaa3c5399ae1580a8ea2914
2021-05-10 13:31:24 +02:00
Zuul
4852e0a77a Merge "ironic-python-agent-builder release model change" 2021-05-10 10:56:49 +00:00
Zuul
cac54d2f9b Merge "Neutron stable releases (Train, Ussuri, Victoria)" 2021-05-10 09:12:47 +00:00
Marios Andreou
2ccb2fe241 Release tripleo-common stable/wallaby
This makes a feature release for stable/wallaby tripleo-common
We need this to unblock tripleo stable/wallaby gate [1]

[1] https://review.opendev.org/c/openstack/python-tripleoclient/+/790130/3#message-c7a3d77de65070a4bd959eb9c7d07e82b93012f5

Change-Id: I312bf5904de392acb3febcca6ab640a7b7b7a7e9
2021-05-10 09:40:05 +03:00
Bernard Cafarelli
7f5b745782
Neutron stable releases (Train, Ussuri, Victoria)
To go along with Wallaby official release

This is also the last train tag before EM transition for neutron and
networking-ovn (no need for newer tags in other stadium projects)

Change-Id: I1f0303eceb9de95de443f999a43d048f31e5f0ce
2021-05-07 16:02:30 +02:00
Hervé Beraud
e96978a74a ironic-python-agent-builder release model change
During the recent xena ptg, the ironic community had a discussion about
the need to move the ironic-python-agent-builder project from an
independent model to the standard release model.

When we initially split the builder from ironic-python-agent, we decided
against it, but considering some problems we encountered during the
road, the ironic community seems to be in favor of the change.
The reasons for this are mainly to strictly align the image building
project to ironic-python-agent releases, and ease dealing with the
occasional upgrade of tinycore linux, the base image used to build the
"tinyipa" ironic-python-agent ramdisk.

We decided to split them at some point, and we'd like to keep them
separated, but we realized that it would make sense to keep them synced
by branch.

The ironic contributor suffered CI pain over the
past year where code handling distributions has broken several times.
Largely these breaks have had to be navigated around with specific
version pinning, and settings changes, because we were unable to fix
something a release or two back inside the tooling, in this case
ironic-python-agent-builder. In other words, if the ironic team had that
capability and those branches/tags, we would have been less in a world of
pain because we wouldn't have had to make changes on every job/branch
across every repository where we were hitting issues with ipa-b. Reduction
of pain is why this change is being proposed.

We should also notice that the Kolla team also use ipa-builder and they
faced similar issues with Kayobe.

These changes propose to cut ipa-builder for Wallaby in a retro active
manner (Wallaby is already out at this point).

These changes use the same model that the one used by
ironic-python-agent.

These changes create a new tag (2.7.0) based on the same hash that the
previous independent version (2.6.0), mostly to properly init the series
with a meaningful version number, avoid misleading with future bugfix
releases versionned with a minor bump, create the wallaby branch from the
right point, avoid errors with our tooling related to missing tags for a
series.

These changes also init ipa-builder for Xena.

http://lists.openstack.org/pipermail/openstack-discuss/2021-April/022032.html

Change-Id: Ia899b39dbc68b245e1b84518363de5420af500c0
2021-05-07 12:53:36 +02:00
Zuul
70c7d038c0 Merge "setup.cfg: Replace dashes with underscores" 2021-05-07 09:55:42 +00:00
Zuul
87e2a0f04e Merge "add release liaison for cyborg" 2021-05-07 09:55:23 +00:00
Zuul
98143a9159 Merge "Release ansible-role-redhat-subscription" 2021-05-06 11:38:10 +00:00
Zuul
b0f48e346f Merge "Add two new ironic liaisons" 2021-05-06 11:38:05 +00:00
Zuul
3d82acf355 Merge "List the Xena cycle signing key as current" 2021-05-06 07:47:12 +00:00
Xinran Wang
1e3a067c42 add release liaison for cyborg
Change-Id: Ia6e400e19674ae6476440128a4fbfc05847fbc31
2021-05-06 02:41:39 +00:00
Jeremy Stanley
e01fd273dc List the Xena cycle signing key as current
This sets the end date for the Wallaby key, adds the Xena key
starting today and links to a minimal export of the corresponding
public key and its details on the keyserver network.

Change-Id: I012696f62c41915b71dfc12f3c658decc26e9644
2021-05-06 01:11:26 +00:00
Zuul
c1367247f6 Merge "Add glance-tempest-plugin to wallaby deliverables" 2021-05-05 15:52:22 +00:00
Zuul
eee66e984b Merge "Tripleo repos release and branch stable/wallaby" 2021-05-05 15:27:51 +00:00
Zuul
04606fee93 Merge "Create feature branch for OpenStackSDK" 2021-05-04 16:09:17 +00:00
Alex Schultz
2c9a80c7ce Release ansible-role-redhat-subscription
We found another fact problem. We need to release with the fix.

Change-Id: Ie82b3e3cbcd1e71c3f1bb9b035be81e27cfeef51
2021-05-04 07:57:16 -06:00
Marios Andreou
468f5a171a Tripleo repos release and branch stable/wallaby
In [1] we branched tripleoclient and tripleo-common. This adds stable
wallaby for the rest of our cycle-with-intermediary repos.
Related puppet-tripleo bump merged in [2].

[1] https://review.opendev.org/c/openstack/releases/+/785670
[2] https://review.opendev.org/c/openstack/puppet-tripleo/+/788506

Change-Id: Ia064530696cb5c47b009967f665900c2dd06d44e
2021-05-04 15:03:33 +03:00
YuehuiLei
a817310dc8 setup.cfg: Replace dashes with underscores
Setuptools v54.1.0 introduces a warning that the use of dash-separated
options in 'setup.cfg' will not be supported in a future version [1].
Get ahead of the issue by replacing the dashes with underscores. Without
this, we see 'UserWarning' messages like the following on new enough
versions of setuptools:

  UserWarning: Usage of dash-separated 'description-file' will not be
  supported in future versions. Please use the underscore name
  'description_file' instead

[1] https://github.com/pypa/setuptools/commit/a2e9ae4cb

Change-Id: Ia9e4cab5a22aa9e9d0e13c4a1f9313c3fcb1ec66
2021-05-04 17:28:05 +08:00
Előd Illés
632b30df6d Fix list_eol_stale_branches.sh to list only stale branches
clone_repo script does not fail if the branch does not exist, but
checks out the master branch [1], so we have to make sure the required
branch exists.

This patch also adds a check that there were no more patches merged
after the given branch was tagged EOL.

[1] https://opendev.org/openstack/releases/src/branch/master/tools/clone_repo.sh#L187

Change-Id: Ia1ededfc3cebbae807719750dc5e2d5949ce9a21
2021-05-03 21:51:51 +02:00
Iury Gregory Melo Ferreira
cd64a36071 Add two new ironic liaisons
This commit adds Riccardo Pittau and myself as ironic liaisons.

Change-Id: I7108dc2c620e9373d6ca3251e746327b036c262c
2021-05-03 18:12:13 +02:00
Artem Goncharov
0dabac7d47 Create feature branch for OpenStackSDK
In order to cut first major release we need to merge some partially
breaking changes. In order not to affect immediately everyone with that
and have freedom to test things thorougly let's do it in a special
branch.

Change-Id: I4622c743d6e95cc8fc8154b5943c49af7405bc05
2021-05-03 15:51:04 +02:00
Zuul
725c753723 Merge "Release OpenStack-Ansible Victoria" 2021-05-03 08:50:46 +00:00
Zuul
dc5c060957 Merge "Release Kayobe 10.0.0.0rc1 and branch for Wallaby" 2021-05-03 08:14:02 +00:00
Zuul
f67b410744 Merge "Update Telemetry release liaison" 2021-04-30 20:24:15 +00:00
Dmitriy Rabotyagov
c0c0be8841 Release OpenStack-Ansible Victoria
Change-Id: Ia32d412a7e2a2483f80b4a3c634a492b1711d6c4
2021-04-30 23:21:47 +03:00
Mark Goddard
3d0860a528 Release Kayobe 10.0.0.0rc1 and branch for Wallaby
Change-Id: Iee1b74226bfb59a619f1520296b3085979ff5921
2021-04-30 17:21:03 +01:00
Zuul
63ee431a65 Merge "Use py3 as the default runtime for tox" 2021-04-30 14:09:44 +00:00
Matthias Runge
cb05df82d6 Update Telemetry release liaison
Change-Id: I43249bb7cdbcff68856e609cc87394bab5602d47
2021-04-30 15:44:41 +02:00
Riccardo Pittau
127fd2ae6f Release ironic 17.0.2 for wallaby
Change-Id: I8ec3f59d8101eebe1c337ce12ae795bccef83b27
2021-04-30 09:43:19 +02:00
Zuul
f1189a2d06 Merge "[masakari] Bugfix releases" 2021-04-29 16:35:53 +00:00
Zuul
4215603609 Merge "Push validations-libs 1.1.0 release" 2021-04-29 16:19:44 +00:00
Zuul
93dcce5039 Merge "Release ovsdbapp 1.10.0" 2021-04-29 16:19:23 +00:00
Zuul
7b0507a7a4 Merge "Release ansible-role-redhat-subscription" 2021-04-29 16:10:27 +00:00
Zuul
21c0cced27 Merge "Release tripleo-common" 2021-04-29 09:44:33 +00:00
Zuul
697e680087 Merge "Release oslo.db 8.6.0 for xena" 2021-04-29 09:44:28 +00:00
Zuul
e5cef368ba Merge "Release sushy 3.7.1 for wallaby" 2021-04-29 09:34:43 +00:00
Zuul
035259913d Merge "Release ironic-python-agent 7.0.1 for wallaby" 2021-04-29 09:34:36 +00:00
Zuul
1f99d6bcdf Merge "Move tooz to the independent model" 2021-04-29 09:34:28 +00:00
Zuul
1562d594c7 Merge "Remove Mark Goddard from Ironic release liasons" 2021-04-29 09:34:20 +00:00
Zuul
8104400b7e Merge "Allow to change the used branch" 2021-04-29 09:27:01 +00:00
Rodolfo Alonso Hernandez
8e8f35d923 Release ovsdbapp 1.10.0
Change-Id: Ibb5eac49747fd8cd71a819083fd33e72c70db1ab
2021-04-29 08:50:55 +00:00
Radosław Piliszek
9fcf854932 [masakari] Bugfix releases
Change-Id: I807c282ea9b2f0116dbeaef417caec157d340623
2021-04-28 18:24:07 +00:00
Mark Goddard
6a7b5041c3 Remove Mark Goddard from Ironic release liasons
Change-Id: Ie7c0ea66873b9715ab7feb5c53bdf7b73b206cff
2021-04-28 15:47:48 +01:00
Hervé Beraud
b1683206f7 Release oslo.db 8.6.0 for xena
That new version will fix incompatibilities between sqlalchemy 1.4 and
oslo.db [1].

[1] http://lists.openstack.org/pipermail/openstack-discuss/2021-April/022094.html

Change-Id: Idd90f180106ed3f686fe233b098748792501a093
2021-04-28 15:22:53 +02:00
Riccardo Pittau
bbbeb7ee0a Release sushy 3.7.1 for wallaby
Change-Id: Ifff64718f602ffb1045be233765730a5010ae453
2021-04-28 14:46:20 +02:00
Riccardo Pittau
7ab397e537 Release ironic-python-agent 7.0.1 for wallaby
Change-Id: I1cccee6bf61edc4855d77d0ef372172074716947
2021-04-28 14:43:08 +02:00
Zuul
b4d122a166 Merge "Add Cinder-specific dates for Xena schedule" 2021-04-28 12:22:51 +00:00
Brian Rosmaita
9f652aee73 Add Cinder-specific dates for Xena schedule
Change-Id: I1b6c282a1e17795627e6bfd66e40ee7ec7e1ad32
2021-04-28 07:46:49 -04:00
James Slagle
2ca1d4b1c7 Release tripleo-common
Includes functionality for the ephemeral Heat work in tripleoclient and
tripleo-ansible. Needed for
https://review.opendev.org/c/openstack/tripleo-common/+/787819.

Signed-off-by: James Slagle <jslagle@redhat.com>
Change-Id: Ia3fbb7f405a68436a901c23999d4e39835a87dec
2021-04-27 09:27:34 -04:00