
This change will allow users (or ironic-inspector) to provide several possible profiles for a node by setting capabilities like XXX_profile (where XXX = compute, controller...). Two new commands are added: openstack overcloud profiles match When no enough nodes with a given profile are found, this command will inspect nodes with such capabilities and choose missing nodes from them. openstack overcloud profiles list Lists all available and active nodes with their profiles and possible profiles. See the following thread for the full background: http://lists.openstack.org/pipermail/openstack-dev/2015-November/078884.html This changes refactores profile validation code in the deploy command to use the same logic as commands above. It's worth noting that this change also removes an incorrect assumption that a node can have multiple values for the same capability. It also makes sure we only take active and available nodes into account for all calculations. Change-Id: I398cf2052b280eaf67e5755412c35fe9551c341f
74 lines
2.6 KiB
INI
74 lines
2.6 KiB
INI
[metadata]
|
|
name = python-tripleoclient
|
|
summary = TripleO client
|
|
description-file =
|
|
README.rst
|
|
license = Apache License, Version 2.0
|
|
author = Brad P. Crochet
|
|
author-email = brad@redhat.com
|
|
home-page = http://www.openstack.org/
|
|
classifier =
|
|
Environment :: Console
|
|
Environment :: OpenStack
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.4
|
|
|
|
[files]
|
|
packages =
|
|
tripleoclient
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[wheel]
|
|
universal = 1
|
|
|
|
[compile_catalog]
|
|
directory = tripleoclient/locale
|
|
domain = tripleoclient
|
|
|
|
[update_catalog]
|
|
domain = tripleoclient
|
|
output_dir = tripleoclient/locale
|
|
input_file = tripleoclient/locale/tripleoclient.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = tripleoclient/locale/tripleoclient.pot
|
|
|
|
[entry_points]
|
|
openstack.cli.extension =
|
|
tripleoclient = tripleoclient.plugin
|
|
|
|
openstack.tripleoclient.v1 =
|
|
baremetal_instackenv_validate = tripleoclient.v1.baremetal:ValidateInstackEnv
|
|
baremetal_import = tripleoclient.v1.baremetal:ImportBaremetal
|
|
baremetal_introspection_bulk_start = tripleoclient.v1.baremetal:StartBaremetalIntrospectionBulk
|
|
baremetal_show_capabilities = tripleoclient.v1.baremetal:ShowNodeCapabilities
|
|
baremetal_introspection_bulk_status = tripleoclient.v1.baremetal:StatusBaremetalIntrospectionBulk
|
|
baremetal_configure_ready_state = tripleoclient.v1.baremetal:ConfigureReadyState
|
|
baremetal_configure_boot = tripleoclient.v1.baremetal:ConfigureBaremetalBoot
|
|
overcloud_netenv_validate = tripleoclient.v1.overcloud_netenv_validate:ValidateOvercloudNetenv
|
|
overcloud_deploy = tripleoclient.v1.overcloud_deploy:DeployOvercloud
|
|
overcloud_image_build = tripleoclient.v1.overcloud_image:BuildOvercloudImage
|
|
overcloud_image_upload = tripleoclient.v1.overcloud_image:UploadOvercloudImage
|
|
overcloud_node_delete = tripleoclient.v1.overcloud_node:DeleteNode
|
|
overcloud_profiles_match = tripleoclient.v1.overcloud_profiles:MatchProfiles
|
|
overcloud_profiles_list = tripleoclient.v1.overcloud_profiles:ListProfiles
|
|
overcloud_update_stack = tripleoclient.v1.overcloud_update:UpdateOvercloud
|
|
undercloud_install = tripleoclient.v1.undercloud:InstallPlugin
|