3ed0be0a1f
FluentClient service has been renamed into Fluentd [0] for queens. This patch handles the disabling of the old FluentdClient service. [0] Idb9886f04d56ffc75a78c4059ff319b58b4acf9f Change-Id: I085973f3d23fd78c16cba94a91692421956b301b Closes-Bug: #1746493
22 lines
888 B
YAML
22 lines
888 B
YAML
# Environment file used in the first step of an overcloud upgrade.
|
|
# This file is required by the tripleoclient and not expected to be updated
|
|
# by the operator. Please use additional -e env.yaml.
|
|
resource_registry:
|
|
OS::TripleO::DeploymentSteps: OS::Heat::None
|
|
OS::TripleO::Tasks::*PreConfig: OS::Heat::None
|
|
OS::TripleO::Tasks::*PostConfig: OS::Heat::None
|
|
# Deprecated/Name changed services
|
|
OS::TripleO::Services::FluentdClient: OS::Heat::None
|
|
|
|
parameter_defaults:
|
|
UpgradeLevelNovaCompute: auto
|
|
UpgradeInitCommonCommand: |
|
|
#!/bin/bash
|
|
set -eu
|
|
yum install -y python-heat-agent-*
|
|
yum update -y ansible
|
|
yum install -y ansible-pacemaker
|
|
# Remove the element os-net-config config.json https://bugs.launchpad.net/tripleo/+bug/1758161/
|
|
rm /usr/libexec/os-apply-config/templates/etc/os-net-config/config.json || true
|
|
UpgradeRemoveUnusedPackages: false
|