Merge "Fix the constraints for THT params NeutronDpdkCoreList and HostCpusList"
[apex-tripleo-heat-templates.git] / docker / services / pacemaker / haproxy.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized HAproxy service for pacemaker
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerHAProxyImage:
12     description: image
13     default: 'centos-binary-haproxy:latest'
14     type: string
15   ServiceNetMap:
16     default: {}
17     description: Mapping of service_name -> network name. Typically set
18                  via parameter_defaults in the resource registry.  This
19                  mapping overrides those in ServiceNetMapDefaults.
20     type: json
21   DefaultPasswords:
22     default: {}
23     type: json
24   EndpointMap:
25     default: {}
26     description: Mapping of service endpoint -> protocol. Typically set
27                  via parameter_defaults in the resource registry.
28     type: json
29   RoleName:
30     default: ''
31     description: Role name on which the service is applied
32     type: string
33   RoleParameters:
34     default: {}
35     description: Parameters specific to the role
36     type: json
37
38 resources:
39
40   HAProxyBase:
41     type: ../../../puppet/services/pacemaker/haproxy.yaml
42     properties:
43       EndpointMap: {get_param: EndpointMap}
44       ServiceNetMap: {get_param: ServiceNetMap}
45       DefaultPasswords: {get_param: DefaultPasswords}
46       RoleName: {get_param: RoleName}
47       RoleParameters: {get_param: RoleParameters}
48
49 outputs:
50   role_data:
51     description: Role data for the HAproxy role.
52     value:
53       service_name: {get_attr: [HAProxyBase, role_data, service_name]}
54       config_settings:
55         map_merge:
56           - get_attr: [HAProxyBase, role_data, config_settings]
57           - tripleo::haproxy::haproxy_daemon: false
58             haproxy_docker: true
59             tripleo::profile::pacemaker::haproxy_bundle::haproxy_docker_image: &haproxy_image
60               list_join:
61                 - '/'
62                 - [ {get_param: DockerNamespace}, {get_param: DockerHAProxyImage} ]
63       step_config:
64           list_join:
65             - "\n"
66             - - &noop_pcmk "['pcmk_bundle', 'pcmk_resource', 'pcmk_property', 'pcmk_constraint', 'pcmk_resource_default'].each |String $val| { noop_resource($val) }"
67               - 'include ::tripleo::profile::pacemaker::haproxy_bundle'
68       service_config_settings: {get_attr: [HAProxyBase, role_data, service_config_settings]}
69       # BEGIN DOCKER SETTINGS
70       puppet_config:
71         config_volume: haproxy
72         puppet_tags: haproxy_config
73         step_config:
74           list_join:
75             - "\n"
76             - - "exec {'wait-for-settle': command => '/bin/true' }"
77               - &noop_firewall "class tripleo::firewall(){}; define tripleo::firewall::rule( $port = undef, $dport = undef, $sport = undef, $proto = undef, $action = undef, $state = undef, $source = undef, $iniface = undef, $chain = undef, $destination = undef, $extras = undef){}"
78               - *noop_pcmk
79               - 'include ::tripleo::profile::pacemaker::haproxy_bundle'
80         config_image: *haproxy_image
81       kolla_config:
82         /var/lib/kolla/config_files/haproxy.json:
83           command: haproxy -f /etc/haproxy/haproxy.cfg
84       docker_config:
85         step_2:
86           haproxy_init_bundle:
87             start_order: 3
88             detach: false
89             net: host
90             user: root
91             command:
92               - '/bin/bash'
93               - '-c'
94               - str_replace:
95                   template:
96                     list_join:
97                       - '; '
98                       - - "cp -a /tmp/puppet-etc/* /etc/puppet; echo '{\"step\": 2}' > /etc/puppet/hieradata/docker.json"
99                         - "FACTER_uuid=docker puppet apply --tags file,file_line,concat,augeas,TAGS -v -e 'CONFIG'"
100                   params:
101                     TAGS: 'pacemaker::resource::bundle,pacemaker::property,pacemaker::resource::ip,pacemaker::resource::ocf,pacemaker::constraint::order,pacemaker::constraint::colocation'
102                     CONFIG:
103                       list_join:
104                         - ';'
105                         - - *noop_firewall
106                           - 'include ::tripleo::profile::base::pacemaker;include ::tripleo::profile::pacemaker::haproxy_bundle'
107             image: *haproxy_image
108             volumes:
109               - /etc/hosts:/etc/hosts:ro
110               - /etc/localtime:/etc/localtime:ro
111               - /etc/puppet:/tmp/puppet-etc:ro
112               - /usr/share/openstack-puppet/modules:/usr/share/openstack-puppet/modules:ro
113               - /etc/corosync/corosync.conf:/etc/corosync/corosync.conf:ro
114               - /dev/shm:/dev/shm:rw
115       metadata_settings:
116         get_attr: [HAProxyBase, role_data, metadata_settings]