summaryrefslogtreecommitdiffstats
path: root/manifests/profile/pacemaker
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/profile/pacemaker')
-rw-r--r--manifests/profile/pacemaker/haproxy.pp99
-rw-r--r--manifests/profile/pacemaker/loadbalancer.pp3
-rw-r--r--manifests/profile/pacemaker/manila.pp162
-rw-r--r--manifests/profile/pacemaker/nova.pp42
-rw-r--r--manifests/profile/pacemaker/nova/conductor.pp45
5 files changed, 351 insertions, 0 deletions
diff --git a/manifests/profile/pacemaker/haproxy.pp b/manifests/profile/pacemaker/haproxy.pp
new file mode 100644
index 0000000..58bb174
--- /dev/null
+++ b/manifests/profile/pacemaker/haproxy.pp
@@ -0,0 +1,99 @@
+# 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::pacemaker::haproxy
+#
+# HAproxy with Pacemaker HA profile for tripleo
+#
+# === Parameters
+#
+# [*bootstrap_node*]
+# (Optional) The hostname of the node responsible for bootstrapping tasks
+# Defaults to hiera('bootstrap_nodeid')
+#
+# [*step*]
+# (Optional) The current step in deployment. See tripleo-heat-templates
+# for more details.
+# Defaults to hiera('step')
+#
+# [*enable_load_balancer*]
+# (Optional) Whether load balancing is enabled for this cluster
+# Defaults to hiera('enable_load_balancer', true)
+#
+class tripleo::profile::pacemaker::haproxy (
+ $bootstrap_node = hiera('bootstrap_nodeid'),
+ $step = hiera('step'),
+ $enable_load_balancer = hiera('enable_load_balancer', true)
+) {
+
+ include ::tripleo::profile::base::loadbalancer
+
+ if $::hostname == downcase($bootstrap_node) {
+ $pacemaker_master = true
+ } else {
+ $pacemaker_master = false
+ }
+
+ if $step >= 2 and $pacemaker_master and $enable_load_balancer {
+ # FIXME: we should not have to access tripleo::haproxy class
+ # parameters here to configure pacemaker VIPs. The configuration
+ # of pacemaker VIPs could move into puppet-tripleo or we should
+ # make use of less specific hiera parameters here for the settings.
+ pacemaker::resource::service { 'haproxy':
+ clone_params => true,
+ }
+
+ $control_vip = hiera('controller_virtual_ip')
+ tripleo::pacemaker::haproxy_with_vip { 'haproxy_and_control_vip':
+ vip_name => 'control',
+ ip_address => $control_vip,
+ }
+
+ $public_vip = hiera('public_virtual_ip')
+ tripleo::pacemaker::haproxy_with_vip { 'haproxy_and_public_vip':
+ ensure => $public_vip and $public_vip != $control_vip,
+ vip_name => 'public',
+ ip_address => $public_vip,
+ }
+
+ $redis_vip = hiera('redis_vip')
+ tripleo::pacemaker::haproxy_with_vip { 'haproxy_and_redis_vip':
+ ensure => $redis_vip and $redis_vip != $control_vip,
+ vip_name => 'redis',
+ ip_address => $redis_vip,
+ }
+
+ $internal_api_vip = hiera('internal_api_virtual_ip')
+ tripleo::pacemaker::haproxy_with_vip { 'haproxy_and_internal_api_vip':
+ ensure => $internal_api_vip and $internal_api_vip != $control_vip,
+ vip_name => 'internal_api',
+ ip_address => $internal_api_vip,
+ }
+
+ $storage_vip = hiera('storage_virtual_ip')
+ tripleo::pacemaker::haproxy_with_vip { 'haproxy_and_storage_vip':
+ ensure => $storage_vip and $storage_vip != $control_vip,
+ vip_name => 'storage',
+ ip_address => $storage_vip,
+ }
+
+ $storage_mgmt_vip = hiera('storage_mgmt_virtual_ip')
+ tripleo::pacemaker::haproxy_with_vip { 'haproxy_and_storage_mgmt_vip':
+ ensure => $storage_mgmt_vip and $storage_mgmt_vip != $control_vip,
+ vip_name => 'storage_mgmt',
+ ip_address => $storage_mgmt_vip,
+ }
+ }
+
+}
diff --git a/manifests/profile/pacemaker/loadbalancer.pp b/manifests/profile/pacemaker/loadbalancer.pp
index 24b1596..608d0e4 100644
--- a/manifests/profile/pacemaker/loadbalancer.pp
+++ b/manifests/profile/pacemaker/loadbalancer.pp
@@ -37,6 +37,9 @@ class tripleo::profile::pacemaker::loadbalancer (
$enable_load_balancer = hiera('enable_load_balancer', true)
) {
+ # TODO(emilien): remove this class once THT does not use it anymore
+ warning('tripleo::profile::pacemaker::loadbalancer is deprecated and will be removed very soon.')
+
include ::tripleo::profile::base::loadbalancer
if $::hostname == downcase($bootstrap_node) {
diff --git a/manifests/profile/pacemaker/manila.pp b/manifests/profile/pacemaker/manila.pp
new file mode 100644
index 0000000..37cab9f
--- /dev/null
+++ b/manifests/profile/pacemaker/manila.pp
@@ -0,0 +1,162 @@
+# 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::pacemaker::manila
+#
+# Manila Pacemaker HA profile for tripleo
+#
+# === Parameters
+#
+# [*bootstrap_node*]
+# (Optional) The hostname of the node responsible for bootstrapping tasks
+# Defaults to hiera('bootstrap_nodeid')
+#
+# [*step*]
+# (Optional) The current step in deployment. See tripleo-heat-templates
+# for more details.
+# Defaults to hiera('step')
+#
+# [*manila_generic_enable*]
+# (Optional) Enable the generic backend.
+# Defaults to hiera('manila_generic_enable_backend', 'false')
+#
+# [*driver_handles_share_servers*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::driver_handles_share_servers')
+#
+# [*smb_template_config_path*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::smb_template_config_path')
+#
+# [*volume_name_template*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::volume_name_template')
+
+# [*volume_snapshot_name_template*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::volume_snapshot_name_template')
+#
+# [*share_mount_path*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::share_mount_path')
+#
+# [*max_time_to_create_volume*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::max_time_to_create_volume')
+#
+# [*max_time_to_attach*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::max_time_to_attach')
+#
+# [*service_instance_smb_config_path*]
+# (Optional)
+# Defaults to downcase(hiera('manila::backend::generic::service_instance_smb_config_path'))
+#
+# [*share_volume_fstype*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::share_volume_fstype')
+#
+# [*cinder_volume_type*]
+# (Optional)
+# Defaults to hiera('manila::backend::generic::cinder_volume_type', '')
+#
+# [*service_instance_user*]
+# (Optional)
+# Defaults to hiera('manila::service_instance::service_instance_user')
+
+# [*service_instance_password*]
+# (Optional)
+# Defaults to hiera('manila::service_instance::service_instance_password')
+
+# [*service_instance_flavor_id*]
+# (Optional)
+# Defaults to hiera('manila::service_instance::service_instance_flavor_id')
+#
+class tripleo::profile::pacemaker::manila (
+ $bootstrap_node = hiera('bootstrap_nodeid'),
+ $step = hiera('step'),
+ $manila_generic_enable = hiera('manila_generic_enable_backend', false),
+ $driver_handles_share_servers = hiera('manila::backend::generic::driver_handles_share_servers'),
+ $smb_template_config_path = hiera('manila::backend::generic::smb_template_config_path'),
+ $volume_name_template = hiera('manila::backend::generic::volume_name_template'),
+ $volume_snapshot_name_template = hiera('manila::backend::generic::volume_snapshot_name_template'),
+ $share_mount_path = hiera('manila::backend::generic::share_mount_path'),
+ $max_time_to_create_volume = hiera('manila::backend::generic::max_time_to_create_volume'),
+ $max_time_to_attach = hiera('manila::backend::generic::max_time_to_attach'),
+ $service_instance_smb_config_path = hiera('manila::backend::generic::service_instance_smb_config_path'),
+ $share_volume_fstype = hiera('manila::backend::generic::share_volume_fstype'),
+ $cinder_volume_type = hiera('manila::backend::generic::cinder_volume_type', ''),
+ $service_instance_user = hiera('manila::service_instance::service_instance_user'),
+ $service_instance_password = hiera('manila::service_instance::service_instance_password'),
+ $service_instance_flavor_id = hiera('manila::service_instance::service_instance_flavor_id'),
+) {
+
+ if $::hostname == downcase($bootstrap_node) {
+ $pacemaker_master = true
+ } else {
+ $pacemaker_master = false
+ }
+
+ # make it so puppet can't restart the manila-share service, since that is
+ # the only pacemaker managed one
+ Service <| tag == 'manila-share' |> {
+ hasrestart => true,
+ restart => '/bin/true',
+ start => '/bin/true',
+ stop => '/bin/true',
+ }
+
+ if $step >= 4 {
+ include ::tripleo::profile::base::manila::api
+ include ::tripleo::profile::base::manila::scheduler
+ include ::tripleo::profile::base::manila::share
+
+ $manila_generic_enable = hiera('manila_generic_enable_backend', false)
+ if $manila_generic_enable {
+ $manila_generic_backend = hiera('manila::backend::generic::title')
+ manila::backend::generic { $manila_generic_backend :
+ driver_handles_share_servers => $driver_handles_share_servers,
+ smb_template_config_path => $smb_template_config_path,
+ volume_name_template => $volume_name_template ,
+ volume_snapshot_name_template => $volume_snapshot_name_template,
+ share_mount_path => $share_mount_path,
+ max_time_to_create_volume => $max_time_to_create_volume,
+ max_time_to_attach => $max_time_to_attach,
+ service_instance_smb_config_path => $service_instance_smb_config_path,
+ share_volume_fstype => $share_volume_fstype,
+ cinder_volume_type => $cinder_volume_type,
+ }
+
+ manila_config {
+ "${manila_generic_backend}/service_instance_user": value => $service_instance_user;
+ "${manila_generic_backend}/service_instance_password": value => $service_instance_password;
+ "${manila_generic_backend}/service_instance_flavor_id": value => $service_instance_flavor_id;
+ }
+
+ include ::manila::volume::cinder
+ }
+
+ $manila_enabled_backends = delete_undef_values([$manila_generic_backend])
+ class { '::manila::backends' :
+ enabled_share_backends => $manila_enabled_backends,
+ }
+ }
+
+ if $step >= 5 and $pacemaker_master {
+
+ # only manila-share is pacemaker managed, and in a/p
+ pacemaker::resource::service { $::manila::params::share_service : }
+
+ }
+}
diff --git a/manifests/profile/pacemaker/nova.pp b/manifests/profile/pacemaker/nova.pp
new file mode 100644
index 0000000..09aed61
--- /dev/null
+++ b/manifests/profile/pacemaker/nova.pp
@@ -0,0 +1,42 @@
+# 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::pacemaker::nova
+#
+# Nova base with Pacemaker profile for tripleo
+#
+# === Parameters
+#
+# [*step*]
+# (Optional) The step in the deployment
+# Defaults to hiera('step')
+#
+class tripleo::profile::pacemaker::nova (
+ $step = hiera('step'),
+) {
+
+ Service <|
+ tag == 'nova-service'
+ |> {
+ hasrestart => true,
+ restart => '/bin/true',
+ start => '/bin/true',
+ stop => '/bin/true',
+ }
+
+ if $step >= 4 {
+ include ::tripleo::profile::base::nova
+ }
+
+}
diff --git a/manifests/profile/pacemaker/nova/conductor.pp b/manifests/profile/pacemaker/nova/conductor.pp
new file mode 100644
index 0000000..76dc462
--- /dev/null
+++ b/manifests/profile/pacemaker/nova/conductor.pp
@@ -0,0 +1,45 @@
+# 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::pacemaker::nova::conductor
+#
+# Nova Conductor with Pacemaker profile for tripleo
+#
+# === Parameters
+#
+# [*step*]
+# (Optional) The current step in deployment. See tripleo-heat-templates
+# for more details.
+# Defaults to hiera('step')
+#
+# [*pacemaker_master*]
+# (Optional) The hostname of the pacemaker master
+# Defaults to hiera('bootstrap_nodeid')
+#
+class tripleo::profile::pacemaker::nova::conductor (
+ $step = hiera('step'),
+ $pacemaker_master = hiera('bootstrap_nodeid'),
+) {
+
+ include ::nova::params
+ include ::tripleo::profile::pacemaker::nova
+ include ::tripleo::profile::base::nova::conductor
+
+ if $step >= 5 and downcase($::hostname) == $pacemaker_master {
+ pacemaker::resource::service { $::nova::params::conductor_service_name:
+ clone_params => 'interleave=true',
+ }
+ }
+
+}