Add --tenant-id in VIM & VNFD osc commands
Compare to tacker commands, the vim and vnfd in osc commands do not have --tenant-id (or project id) argument when registering or creating the vim or vnfd. Change-Id: I53022ca915d5119668777fcebf2af25199b5c326 Implements: blueprint tacker-support-python-openstackclient
This commit is contained in:
parent
c5eb5c319f
commit
a7b17cc238
@ -98,6 +98,9 @@ class CreateVIM(command.ShowOne):
|
||||
parser.add_argument(
|
||||
'name', metavar='NAME',
|
||||
help=_('Set a name for the VIM'))
|
||||
parser.add_argument(
|
||||
'--tenant-id', metavar='TENANT_ID',
|
||||
help=_('The owner tenant ID or project ID'))
|
||||
parser.add_argument(
|
||||
'--config-file',
|
||||
required=True,
|
||||
|
@ -55,6 +55,9 @@ class CreateVNFD(command.ShowOne):
|
||||
parser.add_argument(
|
||||
'name', metavar='NAME',
|
||||
help=_('Name for VNFD'))
|
||||
parser.add_argument(
|
||||
'--tenant-id', metavar='TENANT_ID',
|
||||
help=_('The owner tenant ID or project ID'))
|
||||
parser.add_argument(
|
||||
'--vnfd-file',
|
||||
required=True,
|
||||
|
Loading…
Reference in New Issue
Block a user