Merge "List all unhealthy containers" into stable/pike
[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_pcmklatest
63               list_join:
64                 - ':'
65                 - - yaql:
66                       data: {get_param: DockerManilaShareImage}
67                       expression: $.data.rightSplit(separator => ":", maxSplits => 1)[0]
68                   - 'pcmklatest'
69             manila::share::manage_service: false
70             manila::share::enabled: false
71             manila::host: hostgroup
72       logging_source: {get_attr: [ManilaBase, role_data, logging_source]}
73       logging_groups: {get_attr: [ManilaBase, role_data, logging_groups]}
74       step_config: ""
75       service_config_settings: {get_attr: [ManilaBase, role_data, service_config_settings]}
76       # BEGIN DOCKER SETTINGS
77       puppet_config:
78         config_volume: manila
79         puppet_tags: manila_config,file,concat,file_line
80         step_config:
81           list_join:
82             - "\n"
83             - - {get_attr: [ManilaBase, role_data, step_config]}
84             - - {get_attr: [MySQLClient, role_data, step_config]}
85         config_image: {get_param: DockerManilaConfigImage}
86       kolla_config:
87         /var/lib/kolla/config_files/manila_share.json:
88           command: /usr/bin/manila-share --config-file /usr/share/manila/manila-dist.conf --config-file /etc/manila/manila.conf
89           config_files:
90             - source: "/var/lib/kolla/config_files/src/*"
91               dest: "/"
92               merge: true
93               preserve_properties: true
94           permissions:
95             - path: /var/log/manila
96               owner: manila:manila
97               recurse: true
98       docker_config:
99         step_1:
100           manila_share_image_tag:
101             start_order: 1
102             detach: false
103             net: host
104             user: root
105             command:
106               - '/bin/bash'
107               - '-c'
108               - str_replace:
109                   template:
110                     "/usr/bin/docker tag 'MANILASHARE_IMAGE' 'MANILASHARE_IMAGE_PCMKLATEST'"
111                   params:
112                     MANILASHARE_IMAGE: {get_param: DockerManilaShareImage}
113                     MANILASHARE_IMAGE_PCMKLATEST: *manila_share_image_pcmklatest
114             image: {get_param: DockerManilaShareImage}
115             volumes:
116               - /etc/hosts:/etc/hosts:ro
117               - /etc/localtime:/etc/localtime:ro
118               - /dev/shm:/dev/shm:rw
119               - /etc/sysconfig/docker:/etc/sysconfig/docker:ro
120               - /usr/bin:/usr/bin:ro
121               - /var/run/docker.sock:/var/run/docker.sock:rw
122         step_3:
123           manila_share_init_logs:
124             start_order: 0
125             image: {get_param: DockerManilaShareImage}
126             privileged: false
127             user: root
128             volumes:
129               - /var/log/containers/manila:/var/log/manila
130             command: ['/bin/bash', '-c', 'chown -R manila:manila /var/log/manila']
131         step_5:
132           manila_share_init_bundle:
133             start_order: 0
134             detach: false
135             net: host
136             user: root
137             command:
138               - '/bin/bash'
139               - '-c'
140               - str_replace:
141                   template:
142                     list_join:
143                       - '; '
144                       - - "cp -a /tmp/puppet-etc/* /etc/puppet; echo '{\"step\": 5}' > /etc/puppet/hieradata/docker.json"
145                         - "FACTER_uuid=docker puppet apply --tags file_line,concat,augeas,TAGS --debug -v -e 'CONFIG'"
146                   params:
147                     TAGS: 'pacemaker::resource::bundle,pacemaker::property,pacemaker::constraint::location'
148                     CONFIG: 'include ::tripleo::profile::base::pacemaker;include ::tripleo::profile::pacemaker::manila::share_bundle'
149             image: {get_param: DockerManilaShareImage}
150             volumes:
151               - /etc/hosts:/etc/hosts:ro
152               - /etc/localtime:/etc/localtime:ro
153               - /etc/puppet:/tmp/puppet-etc:ro
154               - /usr/share/openstack-puppet/modules:/usr/share/openstack-puppet/modules:ro
155               - /etc/corosync/corosync.conf:/etc/corosync/corosync.conf:ro
156               - /dev/shm:/dev/shm:rw
157       host_prep_tasks:
158         - name: create persistent directories
159           file:
160             path: "{{ item }}"
161             state: directory
162           with_items:
163             - /var/log/containers/manila
164             - /var/lib/manila
165       upgrade_tasks:
166         - name: Stop and disable manila_share service
167           tags: step2
168           service: name=openstack-manila-share state=stopped enabled=no