73109ba2ec
This adds a docker-ha.yaml that can be passed to the deployment environments in order to get a containerized HA deployment. Until we make the containerized deplyment the default the operator must first include docker.yaml and *then* docker-ha.yaml in order to get a containerized overcloud with an HA control plane. We also make sure that the ClusterCheck service is set to None by default and is part of the Controller roles. Change-Id: I13204d70aad8dfeaf2bcf2ae30a1bb4715167659
23 lines
1.3 KiB
YAML
23 lines
1.3 KiB
YAML
# Environment file to deploy the HA services via docker
|
|
# Add it *after* -e docker.yaml:
|
|
# ...deploy..-e docker.yaml -e docker-ha.yaml
|
|
resource_registry:
|
|
# Pacemaker runs on the host
|
|
OS::TripleO::Tasks::ControllerPreConfig: ../extraconfig/tasks/pre_puppet_pacemaker.yaml
|
|
OS::TripleO::Tasks::ControllerPostConfig: ../extraconfig/tasks/post_puppet_pacemaker.yaml
|
|
OS::TripleO::Tasks::ControllerPostPuppetRestart: ../extraconfig/tasks/post_puppet_pacemaker_restart.yaml
|
|
OS::TripleO::Services::Pacemaker: ../puppet/services/pacemaker.yaml
|
|
OS::TripleO::Services::PacemakerRemote: ../puppet/services/pacemaker_remote.yaml
|
|
|
|
# Services that are disabled for HA deployments with pacemaker
|
|
OS::TripleO::Services::Keepalived: OS::Heat::None
|
|
|
|
# HA Containers managed by pacemaker
|
|
OS::TripleO::Services::CinderVolume: ../docker/services/pacemaker/cinder-volume.yaml
|
|
OS::TripleO::Services::CinderBackup: ../docker/services/pacemaker/cinder-backup.yaml
|
|
OS::TripleO::Services::Clustercheck: ../docker/services/pacemaker/clustercheck.yaml
|
|
OS::TripleO::Services::HAproxy: ../docker/services/pacemaker/haproxy.yaml
|
|
OS::TripleO::Services::MySQL: ../docker/services/pacemaker/database/mysql.yaml
|
|
OS::TripleO::Services::RabbitMQ: ../docker/services/pacemaker/rabbitmq.yaml
|
|
OS::TripleO::Services::Redis: ../docker/services/pacemaker/database/redis.yaml
|