Remove install_type command line argument in Antelope cycle

Change-Id: Id2d9ded90b7c83e29782ddcf794d57f944ddccb4
This commit is contained in:
Bartosz Bezak 2023-01-10 12:03:28 +01:00
parent 9fd6e3608e
commit 1036d802f5
2 changed files with 5 additions and 7 deletions

View File

@ -42,8 +42,6 @@ OPENSTACK_RELEASE = 'master'
DELOREAN_DEPS = "https://trunk.rdoproject.org/centos9-master/" \
"delorean-deps.repo"
INSTALL_TYPE_CHOICES = ['source']
# TODO(mandre) check for file integrity instead of downloading from an HTTPS
# source
TARBALLS_BASE = "https://tarballs.opendev.org"
@ -202,11 +200,6 @@ _CLI_OPTS = [
help='Format to write the final results in'),
cfg.StrOpt('tarballs-base', default=TARBALLS_BASE,
help='Base url to OpenStack tarballs'),
# NOTE(hrw): deprecate argument in Zed, remove in A-cycle
cfg.StrOpt('type', short='t', default='source',
choices=INSTALL_TYPE_CHOICES,
dest='install_type',
help=('Ignored, kept for script compatibility.')),
cfg.IntOpt('threads', short='T', default=8, min=1,
help=('The number of threads to use while building.'
' (Note: setting to one will allow real time'

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
``install_type`` argument is now removed. We no longer support
other values than ``source`` therefore handling of argument was dropped.