ce0ef2fa20
Adds a UpgradeRemoveUnusedPackages param to use in the ansible when conditional for the removal Adds package removal to step2 right after a service is stopped and disabled on step2. Package updates happen in step3 so ideally remove before that. The package removal task has ignore_errors true so dependencies or other issue removing packages will not fail the upgrade workflow. Also adds this to the upgrade environment files for visibility and defaulting false Change-Id: Ie4e4a2d41f7752c5a13507a7c15c6f68e203cfca Related-Bug: 1701501
18 lines
687 B
YAML
18 lines
687 B
YAML
resource_registry:
|
|
OS::TripleO::PostDeploySteps: ../common/major_upgrade_steps.yaml
|
|
parameter_defaults:
|
|
EnableConfigPurge: true
|
|
StackUpdateType: UPGRADE
|
|
UpgradeLevelNovaCompute: auto
|
|
UpgradeInitCommonCommand: |
|
|
#!/bin/bash
|
|
# Newton to Ocata, we need to remove old hiera hook data and
|
|
# install ansible heat agents and ansible-pacemaker
|
|
set -eu
|
|
yum install -y python-heat-agent-*
|
|
yum install -y ansible-pacemaker
|
|
rm -f /usr/libexec/os-apply-config/templates/etc/puppet/hiera.yaml
|
|
rm -f /usr/libexec/os-refresh-config/configure.d/40-hiera-datafiles
|
|
rm -f /etc/puppet/hieradata/*.yaml
|
|
MigrationSshPort: 22
|
|
UpgradeRemoveUnusedPackages: false |