49a7b8e80e
At the moment the CLI generates various passwords, this logic is then not available to the GUI. We should move this to further standardise the process. This patch ports the necessary utility methods and adds an action to generate and store passwords in a mistral environment or retrieve previously generated passwords from the mistral environment. The action will generate and replace any missing passwords. The passwords are stored in parameter_defaults and are used in any subsequent calls to heat (e.g. Parameters and Stack Creation). The order of the merge of parameter_defaults and passwords allows a user to override a password value. The action is added to workflows in the plan_management workbook. Closes-Bug: #1621097 Change-Id: Ic476a09f7981d4e6ee12e05b333a18cda5b4626b
88 lines
3.8 KiB
INI
88 lines
3.8 KiB
INI
[metadata]
|
|
name = tripleo-common
|
|
summary = A common library for TripleO workflows.
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://www.openstack.org/
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.4
|
|
|
|
[files]
|
|
packages =
|
|
tripleo_common
|
|
|
|
scripts =
|
|
scripts/upgrade-non-controller.sh
|
|
scripts/tripleo-build-images
|
|
scripts/upload-puppet-modules
|
|
scripts/upload-swift-artifacts
|
|
scripts/run-validation
|
|
|
|
data_files =
|
|
lib/heat/undercloud_heat_plugins = undercloud_heat_plugins/*
|
|
share/tripleo-common = sudoers
|
|
share/tripleo-common/image-yaml = image-yaml/*
|
|
share/tripleo-common/workbooks = workbooks/*
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[compile_catalog]
|
|
directory = tripleo_common/locale
|
|
domain = tripleo-common
|
|
|
|
[update_catalog]
|
|
domain = tripleo-common
|
|
output_dir = tripleo_common/locale
|
|
input_file = tripleo_common/locale/tripleo-common.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = tripleo_common/locale/tripleo-common.pot
|
|
|
|
[entry_points]
|
|
mistral.actions =
|
|
tripleo.baremetal.configure_boot = tripleo_common.actions.baremetal:ConfigureBootAction
|
|
tripleo.baremetal.configure_root_device = tripleo_common.actions.baremetal:ConfigureRootDeviceAction
|
|
tripleo.baremetal.register_or_update_nodes = tripleo_common.actions.baremetal:RegisterOrUpdateNodes
|
|
tripleo.baremetal.update_node_capability = tripleo_common.actions.baremetal:UpdateNodeCapability
|
|
tripleo.deployment.config = tripleo_common.actions.deployment:OrchestrationDeployAction
|
|
tripleo.deployment.deploy = tripleo_common.actions.deployment:DeployStackAction
|
|
tripleo.heat_capabilities.get = tripleo_common.actions.heat_capabilities:GetCapabilitiesAction
|
|
tripleo.heat_capabilities.update = tripleo_common.actions.heat_capabilities:UpdateCapabilitiesAction
|
|
tripleo.parameters.get = tripleo_common.actions.parameters:GetParametersAction
|
|
tripleo.parameters.reset = tripleo_common.actions.parameters:ResetParametersAction
|
|
tripleo.parameters.update = tripleo_common.actions.parameters:UpdateParametersAction
|
|
tripleo.parameters.update_role = tripleo_common.actions.parameters:UpdateRoleParametersAction
|
|
tripleo.parameters.generate_passwords = tripleo_common.actions.parameters:GeneratePasswordsAction
|
|
tripleo.plan.create = tripleo_common.actions.plan:CreatePlanAction
|
|
tripleo.plan.update = tripleo_common.actions.plan:UpdatePlanAction
|
|
tripleo.plan.create_container = tripleo_common.actions.plan:CreateContainerAction
|
|
tripleo.plan.delete = tripleo_common.actions.plan:DeletePlanAction
|
|
tripleo.plan.list = tripleo_common.actions.plan:ListPlansAction
|
|
tripleo.role.list = tripleo_common.actions.plan:ListRolesAction
|
|
tripleo.templates.process = tripleo_common.actions.templates:ProcessTemplatesAction
|
|
tripleo.templates.upload_default = tripleo_common.actions.templates:UploadTemplatesAction
|
|
tripleo.validations.get_pubkey = tripleo_common.actions.validations:GetPubkeyAction
|
|
tripleo.validations.enabled = tripleo_common.actions.validations:Enabled
|
|
tripleo.validations.list_groups = tripleo_common.actions.validations:ListGroupsAction
|
|
tripleo.validations.list_validations = tripleo_common.actions.validations:ListValidationsAction
|
|
tripleo.validations.run_validation = tripleo_common.actions.validations:RunValidationAction
|