Puppet Class: tripleo::profile::base::pacemaker::instance_ha
- Defined in:
- manifests/profile/base/pacemaker/instance_ha.pp
Overview
Copyright 2016 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Class: tripleo::profile::base::pacemaker::instance_ha
Pacemaker profile for configuring instance HA on the control plane in tripleo Note that this class is included under the condition $pacemaker_master and $enable_instanceha
Parameters
- step
-
(Optional) The current step in deployment. See tripleo-heat-templates for more details. Defaults to Integer(lookup(‘step’))
- pcs_tries
-
(Optional) The number of times pcs commands should be retried. Defaults to lookup(‘pcs_tries’, undef, undef, 20)
- keystone_endpoint_url
-
The keystone public endpoint url Defaults to lookup(‘keystone::endpoint::public_url’)
- keystone_password
-
The keystone admin password Defaults to lookup(‘keystone::admin_password’)
- keystone_admin
-
The keystone admin username Defaults to lookup(‘keystone::roles::admin::admin_tenant’, undef, undef, ‘admin’)
- keystone_tenant
-
The keystone tenant Defaults to lookup(‘keystone::roles::admin::admin_tenant’, undef, undef, ‘admin’)
- keystone_domain
-
The keystone domain Defaults to lookup(‘tripleo::clouddomain’, undef, undef, ‘localdomain’)
- user_domain
-
The keystone user domain for nova Defaults to lookup(‘nova::keystone::authtoken::user_domain_name’, undef, undef, ‘Default’)
- project_domain
-
The keystone project domain for nova Defaults to lookup(‘nova::keystone::authtoken::project_domain_name’, undef, undef, ‘Default’)
- region_name
-
(Optional) String. Region name for authenticating to Keystone. Defaults to lookup(‘nova::keystone::authtoken::region_name’, undef, undef, ‘regionOne’)
- no_shared_storage
-
Variable that defines the no_shared_storage for the nova evacuate resource Defaults to lookup(‘tripleo::instanceha::no_shared_storage’, undef, undef, true)
- evacuate_delay
-
(Optional) Integer, seconds to wait before starting the nova evacuate Defaults to lookup(‘tripleo::instanceha::evacuate_delay’, undef, undef, 0)
- deep_compare_fencing
-
(Optional) Boolean, should fence_compute be deep compared in order to update the existing fencing resource when puppet is being rerun Defaults to lookup(‘tripleo::fencing’, undef, undef, true)
- deep_compare_ocf
-
(Optional) Boolean, should the IHA ocf resource nova evacuate be deep compared in order to update the resource when puppet is being rerun Defaults to lookup(‘pacemaker::resource::ocf::deep_compare’, undef, undef, true)
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'manifests/profile/base/pacemaker/instance_ha.pp', line 81
class tripleo::profile::base::pacemaker::instance_ha (
$step = Integer(lookup('step')),
$pcs_tries = lookup('pcs_tries', undef, undef, 20),
$keystone_endpoint_url = lookup('keystone::endpoint::public_url'),
$keystone_password = lookup('keystone::admin_password'),
$keystone_admin = lookup('keystone::roles::admin::admin_tenant', undef, undef, 'admin'),
$keystone_tenant = lookup('keystone::roles::admin::admin_tenant', undef, undef, 'admin'),
$keystone_domain = lookup('tripleo::clouddomain', undef, undef, 'localdomain'),
$user_domain = lookup('nova::keystone::authtoken::user_domain_name', undef, undef, 'Default'),
$project_domain = lookup('nova::keystone::authtoken::project_domain_name', undef, undef, 'Default'),
$region_name = lookup('nova::keystone::authtoken::region_name', undef, undef, 'regionOne'),
$no_shared_storage = lookup('tripleo::instanceha::no_shared_storage', undef, undef, true),
$evacuate_delay = lookup('tripleo::instanceha::evacuate_delay', undef, undef, 0),
$deep_compare_fencing = lookup('tripleo::fencing', undef, undef, true),
$deep_compare_ocf = lookup('pacemaker::resource::ocf::deep_compare', undef, undef, true),
) {
if $step >= 2 {
class { 'pacemaker::resource_defaults':
tries => $pcs_tries,
defaults => {
'fencing-default' => {
name => 'requires',
value => 'fencing',
},
},
}
}
# We need the guarantee that keystone is configured before creating the next resources
if $step >= 4 {
# This passes the explicit host list of compute nodes that the fence_compute stonith device
# is in charge of
$compute_list = downcase(join(any2array(lookup('compute_instanceha_short_node_names', undef, undef, '')), ','))
pacemaker::stonith::fence_compute { 'fence-nova':
auth_url => $keystone_endpoint_url,
login => $keystone_admin,
passwd => $keystone_password,
tenant_name => $keystone_admin,
project_domain => $project_domain,
user_domain => $user_domain,
domain => $keystone_domain,
region_name => $region_name,
record_only => 1,
meta_attr => 'provides=unfencing',
pcmk_host_list => $compute_list,
tries => $pcs_tries,
deep_compare => $deep_compare_fencing,
}
pacemaker::resource::ocf { 'compute-unfence-trigger':
ocf_agent_name => 'pacemaker:Dummy',
meta_params => 'requires=unfencing',
clone_params => true,
op_params => 'stop timeout=20 on-fail=block',
tries => $pcs_tries,
deep_compare => $deep_compare_ocf,
location_rule => {
resource_discovery => 'never',
score => '-INFINITY',
expression => ['compute-instanceha-role ne true'],
}
}
if $no_shared_storage {
$iha_no_shared_storage = 'no_shared_storage=true'
} else {
$iha_no_shared_storage = 'no_shared_storage=false'
}
if $evacuate_delay > 0 {
$evacuate_param = " evacuate_delay=${evacuate_delay}"
} else {
$evacuate_param = ''
}
pacemaker::resource::ocf { 'nova-evacuate':
ocf_agent_name => 'openstack:NovaEvacuate',
# lint:ignore:140chars
resource_params => "auth_url=${keystone_endpoint_url} username=${keystone_admin} password=${keystone_password} user_domain=${user_domain} project_domain=${project_domain} tenant_name=${keystone_tenant} region_name=${region_name} ${iha_no_shared_storage}${evacuate_param}",
# lint:endignore
tries => $pcs_tries,
deep_compare => $deep_compare_ocf,
location_rule => {
resource_discovery => 'never',
score => '-INFINITY',
expression => ['compute-instanceha-role eq true'],
}
}
}
}
|