Add a docker-ha.yaml environment file for containerized HA deployments
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
This commit is contained in:
parent
bf66addf38
commit
73109ba2ec
22
environments/docker-ha.yaml
Normal file
22
environments/docker-ha.yaml
Normal file
@ -0,0 +1,22 @@
|
||||
# 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
|
@ -264,6 +264,7 @@ resource_registry:
|
||||
OS::TripleO::Services::Docker: OS::Heat::None
|
||||
OS::TripleO::Services::CertmongerUser: OS::Heat::None
|
||||
OS::TripleO::Services::Iscsid: OS::Heat::None
|
||||
OS::TripleO::Services::Clustercheck: OS::Heat::None
|
||||
|
||||
parameter_defaults:
|
||||
EnablePackageInstall: false
|
||||
|
@ -46,6 +46,7 @@
|
||||
- OS::TripleO::Services::CinderVolume
|
||||
- OS::TripleO::Services::Collectd
|
||||
- OS::TripleO::Services::Congress
|
||||
- OS::TripleO::Services::Clustercheck
|
||||
- OS::TripleO::Services::Docker
|
||||
- OS::TripleO::Services::Ec2Api
|
||||
- OS::TripleO::Services::Etcd
|
||||
|
@ -40,6 +40,7 @@
|
||||
- OS::TripleO::Services::CinderVolume
|
||||
- OS::TripleO::Services::Collectd
|
||||
- OS::TripleO::Services::Congress
|
||||
- OS::TripleO::Services::Clustercheck
|
||||
- OS::TripleO::Services::Docker
|
||||
- OS::TripleO::Services::Ec2Api
|
||||
- OS::TripleO::Services::Etcd
|
||||
|
@ -47,6 +47,7 @@
|
||||
- OS::TripleO::Services::CinderHPELeftHandISCSI
|
||||
- OS::TripleO::Services::CinderScheduler
|
||||
- OS::TripleO::Services::CinderVolume
|
||||
- OS::TripleO::Services::Clustercheck
|
||||
- OS::TripleO::Services::Collectd
|
||||
- OS::TripleO::Services::Congress
|
||||
- OS::TripleO::Services::Docker
|
||||
|
Loading…
Reference in New Issue
Block a user