Merge "compute: Deprecate 'server create --file'"

This commit is contained in:
Zuul 2021-03-04 21:29:48 +00:00 committed by Gerrit Code Review
commit 979b4832dd
2 changed files with 18 additions and 1 deletions

View File

@ -989,8 +989,9 @@ class CreateServer(command.ShowOne):
action='append', action='append',
default=[], default=[],
help=_( help=_(
'File to inject into image before boot ' 'File(s) to inject into image before boot '
'(repeat option to set multiple files)' '(repeat option to set multiple files)'
'(supported by --os-compute-api-version 2.57 or below)'
), ),
) )
parser.add_argument( parser.add_argument(
@ -1201,6 +1202,15 @@ class CreateServer(command.ShowOne):
flavor = utils.find_resource( flavor = utils.find_resource(
compute_client.flavors, parsed_args.flavor) compute_client.flavors, parsed_args.flavor)
if parsed_args.file:
if compute_client.api_version >= api_versions.APIVersion('2.57'):
msg = _(
'Personality files are deprecated and are not supported '
'for --os-compute-api-version greater than 2.56; use '
'user data instead'
)
raise exceptions.CommandError(msg)
files = {} files = {}
for f in parsed_args.file: for f in parsed_args.file:
dst, src = f.split('=', 1) dst, src = f.split('=', 1)

View File

@ -0,0 +1,7 @@
---
upgrade:
- |
The ``server create`` command will now error out if the ``--file`` option
is specified alongside ``--os-compute-api-version`` of ``2.57`` or greater.
This reflects the removal of this feature from the compute service in this
microversion.