Merge "Use a single configuration file for specifying docker containers."
[apex-tripleo-heat-templates.git] / docker / services / manila-scheduler.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Manila Scheduler service
5
6 parameters:
7   DockerManilaSchedulerImage:
8     description: image
9     type: string
10   DockerManilaConfigImage:
11     description: The container image to use for the manila config_volume
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   ContainersCommon:
43     type: ./containers-common.yaml
44
45   ManilaSchedulerPuppetBase:
46     type: ../../puppet/services/manila-scheduler.yaml
47     properties:
48       EndpointMap: {get_param: EndpointMap}
49       ServiceData: {get_param: ServiceData}
50       ServiceNetMap: {get_param: ServiceNetMap}
51       DefaultPasswords: {get_param: DefaultPasswords}
52
53 outputs:
54   role_data:
55     description: Role data for the Manila Scheduler role.
56     value:
57       service_name: {get_attr: [ManilaSchedulerPuppetBase, role_data, service_name]}
58       config_settings: {get_attr: [ManilaSchedulerPuppetBase, role_data, config_settings]}
59       step_config: &step_config
60         {get_attr: [ManilaSchedulerPuppetBase, role_data, step_config]}
61       service_config_settings: {get_attr: [ManilaSchedulerPuppetBase, role_data, service_config_settings]}
62       # BEGIN DOCKER SETTINGS #
63       puppet_config:
64         config_volume: manila
65         puppet_tags: manila_config,manila_scheduler_paste_ini
66         step_config: *step_config
67         config_image: {get_param: DockerManilaConfigImage}
68       kolla_config:
69         /var/lib/kolla/config_files/manila_scheduler.json:
70           command: /usr/bin/manila-scheduler --config-file /usr/share/manila/manila-dist.conf --config-file /etc/manila/manila.conf
71           config_files:
72             - source: "/var/lib/kolla/config_files/src/*"
73               dest: "/"
74               merge: true
75               preserve_properties: true
76           permissions:
77             - path: /var/log/manila
78               owner: manila:manila
79               recurse: true
80       docker_config:
81         step_4:
82           manila_scheduler:
83             image: {get_param: DockerManilaSchedulerImage}
84             net: host
85             restart: always
86             volumes:
87               list_concat:
88                 - {get_attr: [ContainersCommon, volumes]}
89                 -
90                   - /var/lib/kolla/config_files/manila_scheduler.json:/var/lib/kolla/config_files/config.json:ro
91                   - /var/lib/config-data/puppet-generated/manila/:/var/lib/kolla/config_files/src:ro
92                   - /var/log/containers/manila:/var/log/manila
93             environment:
94               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
95       host_prep_tasks:
96         - name: Create persistent manila logs directory
97           file:
98             path: /var/log/containers/manila
99             state: directory
100       upgrade_tasks:
101         - name: Stop and disable manila_scheduler service
102           tags: step2
103           service: name=openstack-manila-scheduler state=stopped enabled=no