blob: 20340c78f8d14669b2d478d8626315feebf55b2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
resource_registry:
# FIXME(shardy) do we need to break major_upgrade_steps.yaml apart to
# enable docker specific logic, or is just overridding PostUpgradeSteps
# enough (as we want to share the ansible tasks steps etc)
OS::TripleO::PostDeploySteps: ../puppet/major_upgrade_steps.yaml
parameter_defaults:
EnableConfigPurge: false
StackUpdateType: UPGRADE
UpgradeLevelNovaCompute: auto
UpgradeInitCommonCommand: |
#!/bin/bash
set -eu
# Ocata to Pike, put any needed host-level workarounds here
yum install -y ansible-pacemaker
|