b1c95b6de1
Installing openstack-heat-agents is unnecessary since it has the same effect as installing python-heat-agent-* which happens on the next line. Installing openstack-heat-agents is causing issues when mixing ocata and master repos, since there hasn't been a release on master since ocata was branched. Change-Id: I1a75e16810b6a89cf1dd9ff4f4b3b5dccfc0466e Closes-Bug: #1677278
16 lines
601 B
YAML
16 lines
601 B
YAML
resource_registry:
|
|
OS::TripleO::PostDeploySteps: ../puppet/major_upgrade_steps.yaml
|
|
parameter_defaults:
|
|
EnableConfigPurge: true
|
|
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
|