Merge "scenario002/multinode: do not run containerized Zaqar"
[apex-tripleo-heat-templates.git] / docker / services / pacemaker / manila-share.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Manila Share service
5
6 parameters:
7   DockerManilaShareImage:
8     description: image
9     type: string
10   DockerManilaConfigImage:
11     description: image
12     type: string
13   EndpointMap:
14     default: {}
15     description: Mapping of service endpoint -> protocol. Typically set
16                  via parameter_defaults in the resource registry.
17     type: json
18   ServiceData:
19     default: {}
20     description: Dictionary packing service data
21     type: json
22   ServiceNetMap:
23     default: {}
24     description: Mapping of service_name -> network name. Typically set
25                  via parameter_defaults in the resource registry.  This
26                  mapping overrides those in ServiceNetMapDefaults.
27     type: json
28   DefaultPasswords:
29     default: {}
30     type: json
31   RoleName:
32     default: ''
33     description: Role name on which the service is applied
34     type: string
35   RoleParameters:
36     default: {}
37     description: Parameters specific to the role
38     type: json
39
40 resources:
41
42   MySQLClient:
43     type: ../../../puppet/services/database/mysql-client.yaml
44
45   ManilaBase:
46     type: ../../../puppet/services/pacemaker/manila-share.yaml
47     properties:
48       EndpointMap: {get_param: EndpointMap}
49       ServiceNetMap: {get_param: ServiceNetMap}
50       DefaultPasswords: {get_param: DefaultPasswords}
51       RoleName: {get_param: RoleName}
52       RoleParameters: {get_param: RoleParameters}
53
54 outputs:
55   role_data:
56     description: Role data for the Manila Share role.
57     value:
58       service_name: {get_attr: [ManilaBase, role_data, service_name]}
59       config_settings:
60         map_merge:
61           - get_attr: [ManilaBase, role_data, config_settings]
62           - tripleo::profile::pacemaker::manila::share_bundle::manila_share_docker_image: &manila_share_image {get_param: DockerManilaShareImage}
63             manila::share::manage_service: false
64             manila::share::enabled: false
65             manila::host: hostgroup
66       step_config: ""
67       service_config_settings: {get_attr: [ManilaBase, role_data, service_config_settings]}
68       # BEGIN DOCKER SETTINGS
69       puppet_config:
70         config_volume: manila
71         puppet_tags: manila_config,file,concat,file_line
72         step_config:
73           list_join:
74             - "\n"
75             - - {get_attr: [ManilaBase, role_data, step_config]}
76             - - {get_attr: [MySQLClient, role_data, step_config]}
77         config_image: {get_param: DockerManilaConfigImage}
78       kolla_config:
79         /var/lib/kolla/config_files/manila_share.json:
80           command: /usr/bin/manila-share --config-file /usr/share/manila/manila-dist.conf --config-file /etc/manila/manila.conf
81           config_files:
82             - source: "/var/lib/kolla/config_files/src/*"
83               dest: "/"
84               merge: true
85               preserve_properties: true
86             # NOTE(gfidente): ceph ansible generated
87             - source: "/var/lib/kolla/config_files/src-ceph/"
88               dest: "/etc/ceph"
89               merge: true
90               preserve_properties: true
91           permissions:
92             - path: /var/log/manila
93               owner: manila:manila
94               recurse: true
95       docker_config:
96         step_3:
97           manila_share_init_logs:
98             start_order: 0
99             image: *manila_share_image
100             privileged: false
101             user: root
102             volumes:
103               - /var/log/containers/manila:/var/log/manila
104             command: ['/bin/bash', '-c', 'chown -R manila:manila /var/log/manila']
105         step_5:
106           manila_share_init_bundle:
107             start_order: 0
108             detach: false
109             net: host
110             user: root
111             command:
112               - '/bin/bash'
113               - '-c'
114               - str_replace:
115                   template:
116                     list_join:
117                       - '; '
118                       - - "cp -a /tmp/puppet-etc/* /etc/puppet; echo '{\"step\": 5}' > /etc/puppet/hieradata/docker.json"
119                         - "FACTER_uuid=docker puppet apply --tags file_line,concat,augeas,TAGS --debug -v -e 'CONFIG'"
120                   params:
121                     TAGS: 'pacemaker::resource::bundle,pacemaker::property,pacemaker::constraint::location'
122                     CONFIG: 'include ::tripleo::profile::base::pacemaker;include ::tripleo::profile::pacemaker::manila::share_bundle'
123             image: *manila_share_image
124             volumes:
125               - /etc/hosts:/etc/hosts:ro
126               - /etc/localtime:/etc/localtime:ro
127               - /etc/puppet:/tmp/puppet-etc:ro
128               - /usr/share/openstack-puppet/modules:/usr/share/openstack-puppet/modules:ro
129               - /etc/corosync/corosync.conf:/etc/corosync/corosync.conf:ro
130               - /dev/shm:/dev/shm:rw
131       host_prep_tasks:
132         - name: create persistent directories
133           file:
134             path: "{{ item }}"
135             state: directory
136           with_items:
137             - /var/log/containers/manila
138             - /var/lib/manila
139       upgrade_tasks:
140         - name: Stop and disable manila_share service
141           tags: step2
142           service: name=openstack-manila-share state=stopped enabled=no