Merge "Revert "Revert "Set meta container-attribute-target=host attribute"""
This commit is contained in:
commit
6de807951f
@ -125,9 +125,10 @@ class tripleo::profile::pacemaker::database::mysql_bundle (
|
||||
$galera_nodes_count = count($galera_nodes_array)
|
||||
|
||||
# construct a galera-pacemaker name mapping for the resource agent
|
||||
# [galera-bundle-0:galera_node[0], galera-bundle-1:galera_node[1], ... ,galera-bundle-n:galera_node[n]]
|
||||
$host_map_array = $galera_nodes_array.map |$i, $host| {
|
||||
"galera-bundle-${i}:${host}"
|
||||
# [galera-0:galera-0.internalapi.local, ...]
|
||||
$host_map_array_tmp = zip($galera_node_names_lookup, $galera_fqdns_names_lookup)
|
||||
$host_map_array = $host_map_array_tmp.map |$i| {
|
||||
"${i[0]}:${i[1]}"
|
||||
}
|
||||
$cluster_host_map_string = join($host_map_array, ';')
|
||||
|
||||
@ -361,7 +362,7 @@ MYSQL_HOST=localhost\n",
|
||||
pacemaker::resource::ocf { 'galera':
|
||||
ocf_agent_name => 'heartbeat:galera',
|
||||
master_params => '',
|
||||
meta_params => "master-max=${galera_nodes_count} ordered=true",
|
||||
meta_params => "master-max=${galera_nodes_count} ordered=true container-attribute-target=host",
|
||||
op_params => 'promote timeout=300s on-fail=block',
|
||||
resource_params => "additional_parameters='--open-files-limit=16384' enable_creation=true wsrep_cluster_address='gcomm://${galera_nodes}' cluster_host_map='${cluster_host_map_string}'",
|
||||
tries => $pcs_tries,
|
||||
|
@ -150,7 +150,7 @@ class tripleo::profile::pacemaker::database::redis_bundle (
|
||||
ocf_agent_name => 'heartbeat:redis',
|
||||
resource_params => 'wait_last_known_master=true',
|
||||
master_params => '',
|
||||
meta_params => 'notify=true ordered=true interleave=true',
|
||||
meta_params => 'notify=true ordered=true interleave=true container-attribute-target=host',
|
||||
op_params => 'start timeout=200s stop timeout=200s',
|
||||
tries => $pcs_tries,
|
||||
location_rule => {
|
||||
|
@ -146,7 +146,7 @@ class tripleo::profile::pacemaker::ovn_dbs_bundle (
|
||||
resource_params => "master_ip=${ovn_dbs_vip} nb_master_port=${nb_db_port} sb_master_port=${sb_db_port} manage_northd=yes",
|
||||
tries => $pcs_tries,
|
||||
location_rule => $ovn_dbs_location_rule,
|
||||
meta_params => 'notify=true',
|
||||
meta_params => 'notify=true container-attribute-target=host',
|
||||
bundle => 'ovn-dbs-bundle',
|
||||
}
|
||||
|
||||
|
@ -206,7 +206,7 @@ class tripleo::profile::pacemaker::rabbitmq_bundle (
|
||||
pacemaker::resource::ocf { 'rabbitmq':
|
||||
ocf_agent_name => 'heartbeat:rabbitmq-cluster',
|
||||
resource_params => $params,
|
||||
meta_params => 'notify=true',
|
||||
meta_params => 'notify=true container-attribute-target=host',
|
||||
op_params => 'start timeout=200s stop timeout=200s',
|
||||
tries => $pcs_tries,
|
||||
location_rule => {
|
||||
|
Loading…
Reference in New Issue
Block a user