We are stoked to announce the release of: tripleo-ui 9.3.0: tripleo-ui This release is part of the rocky stable release series. Download the package from: https://tarballs.openstack.org/tripleo-ui/ For more details, please see below. 9.3.0 ^^^^^ New Features * Added integration of config-download deployment as a default deployment way using TripleO-UI. Config Download feature splits deployment into 2 parts, at first, Heat creates all the deployment data necessary via SoftwareDeployment resources to perform the Overcloud installation and configuration. In second part, using downloaded data from Heat, Ansible playbooks and tasks are generated and are then used by the Undercloud to complete the configuration of the Overcloud. Changes in tripleo-ui 9.2.0..9.3.0 ---------------------------------- 9bbece2 Prepare 9.3.0 (Rocky RC1) 1864149 Imported Translations from Zanata b03492d Imported Translations from Zanata cd4c89a Imported Translations from Zanata 0dcce58 List deployment failures on deployment failure a45c597 Update way to determine deployment status in plans list 95b358e Update patternfly and patternfly-react to latest version 36df8e5 Add Recover deployment status button and actions e81f964 Run undeploy_plan workflow to delete deployment Diffstat (except docs and test files) ------------------------------------- i18n/locales/de.json | 73 +- i18n/locales/en-GB.json | 31 +- i18n/locales/es.json | 31 +- i18n/locales/id.json | 49 +- i18n/locales/ja.json | 29 +- i18n/locales/ko-KR.json | 29 +- i18n/locales/zh-CN.json | 29 +- npm-shrinkwrap.json | 998 +++++++++++++++++++-- package.json | 6 +- .../notes/config-download-0600de77081b1094.yaml | 10 + src/js/actions/DeploymentActions.js | 215 ++++- src/js/actions/StacksActions.js | 36 - src/js/actions/ZaqarActions.js | 63 +- .../deployment/DeploymentConfirmation.js | 15 +- src/js/components/deployment/DeploymentDetail.js | 16 +- src/js/components/deployment/DeploymentFailure.js | 81 +- src/js/components/deployment/DeploymentFailures.js | 194 ++++ src/js/components/deployment/DeploymentProgress.js | 137 ++- .../deployment/RecoverDeploymentStatusButton.js | 72 ++ src/js/components/deployment/StackResources.js | 82 ++ src/js/components/deployment/UndeployProgress.js | 167 ++++ .../deployment_plan/DeleteStackButton.js | 5 +- src/js/components/deployment_plan/DeployStep.js | 51 +- .../deployment_plan/DeploymentConfirmationRoute.js | 4 +- .../deployment_plan/DeploymentDetailRoute.js | 2 +- .../deployment_plan/DeploymentProgress.js | 108 ++- .../deployment_plan/DeploymentSuccess.js | 33 +- .../components/deployment_plan/UndeployProgress.js | 183 ++++ src/js/components/plan/PlansList.js | 68 +- src/js/components/plan/cards/PlanActions.js | 68 +- src/js/components/plan/cards/PlanCard.js | 102 +-- src/js/constants/DeploymentConstants.js | 45 +- src/js/constants/DeploymentFailuresConstants.js | 21 + src/js/constants/MistralConstants.js | 4 +- src/js/constants/StacksConstants.js | 3 - src/js/immutableRecords/deploymentFailures.js | 33 + src/js/immutableRecords/deploymentStatus.js | 3 +- src/js/immutableRecords/stacks.js | 1 - src/js/reducers/appReducer.js | 2 + src/js/reducers/deploymentFailures.js | 71 ++ src/js/reducers/deploymentStatus.js | 49 +- src/js/reducers/stacksReducer.js | 16 +- src/js/selectors/deployment.js | 4 +- src/js/selectors/stacks.js | 19 + src/less/base.less | 1 + src/less/components/DeploymentFailures.less | 31 + src/less/ui/ModalPanel.less | 4 + src/less/utils/patternflyOverrides.less | 3 + 49 files changed, 2742 insertions(+), 563 deletions(-)