d9f595bd82
This change allows specifying portgroups (that themselves may contain ports) inside the nodes dictionaries. Related-Bug: #1618754 Change-Id: I858412d135717e78291bbef8b0861ef00c5d4fdb
29 lines
1.3 KiB
Python
29 lines
1.3 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from ironicclient.common import cliutils
|
|
from ironicclient.v1 import create_resources
|
|
|
|
|
|
@cliutils.arg('resource_files', nargs='+', metavar='<file>', default=[],
|
|
help='File (.yaml or .json) containing descriptions of the '
|
|
'resources to create. Can be specified multiple times.')
|
|
def do_create(cc, args):
|
|
"""Create baremetal resources (chassis, nodes, port groups and ports).
|
|
|
|
The resources may be described in one or more JSON or YAML files. If any
|
|
file cannot be validated, no resources are created. An attempt is made to
|
|
create all the resources; those that could not be created are skipped
|
|
(with a corresponding error message).
|
|
"""
|
|
create_resources.create_resources(cc, args.resource_files)
|