tripleo-heat-templates/deployment/pacemaker/compute-instanceha-baremeta...

66 lines
2.0 KiB
YAML

heat_template_version: rocky
description: >
OpenStack Compute InstanceHA services configured with Puppet
parameters:
ServiceData:
default: {}
description: Dictionary packing service data
type: json
ServiceNetMap:
default: {}
description: Mapping of service_name -> network name. Typically set
via parameter_defaults in the resource registry. This
mapping overrides those in ServiceNetMapDefaults.
type: json
DefaultPasswords:
default: {}
type: json
RoleName:
default: ''
description: Role name on which the service is applied
type: string
RoleParameters:
default: {}
description: Parameters specific to the role
type: json
EndpointMap:
default: {}
description: Mapping of service endpoint -> protocol. Typically set
via parameter_defaults in the resource registry.
type: json
EnableInstanceHA:
default: false
description: Whether to enable an Instance Ha configurarion or not.
This setup requires the Compute role to have the
PacemakerRemote service added to it.
type: boolean
outputs:
role_data:
description: Role data for Compute InstanceHA service.
value:
service_name: compute_instanceha
global_config_settings:
tripleo::instanceha: {get_param: EnableInstanceHA}
step_config: |
include ::tripleo::profile::pacemaker::compute_instanceha
upgrade_tasks:
- name: Ensure /etc/corosync/corosync.conf is not present as directory
when:
- step|int == 1
block:
- name: Check /etc/corosync/corosync.conf
stat:
path: /etc/corosync/corosync.conf
register: corosync_conf
- name: Remove corosync.conf if it is a directory
file:
path: /etc/corosync/corosync.conf
state: absent
when:
- corosync_conf.stat.isdir is defined
- corosync_conf.stat.isdir|bool