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