Merge "List all unhealthy containers" into stable/pike
[apex-tripleo-heat-templates.git] / docker / services / nova-placement.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack containerized Nova Placement API service
5
6 parameters:
7   DockerNovaPlacementImage:
8     description: image
9     type: string
10   DockerNovaPlacementConfigImage:
11     description: The container image to use for the nova_placement 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   EnableInternalTLS:
40     type: boolean
41     default: false
42
43 conditions:
44
45   internal_tls_enabled: {equals: [{get_param: EnableInternalTLS}, true]}
46
47 resources:
48
49   ContainersCommon:
50     type: ./containers-common.yaml
51
52   MySQLClient:
53     type: ../../puppet/services/database/mysql-client.yaml
54
55   NovaPlacementBase:
56     type: ../../puppet/services/nova-placement.yaml
57     properties:
58       EndpointMap: {get_param: EndpointMap}
59       ServiceData: {get_param: ServiceData}
60       ServiceNetMap: {get_param: ServiceNetMap}
61       DefaultPasswords: {get_param: DefaultPasswords}
62       RoleName: {get_param: RoleName}
63       RoleParameters: {get_param: RoleParameters}
64
65 outputs:
66   role_data:
67     description: Role data for the Nova Placement API role.
68     value:
69       service_name: {get_attr: [NovaPlacementBase, role_data, service_name]}
70       config_settings:
71         map_merge:
72           - get_attr: [NovaPlacementBase, role_data, config_settings]
73           - apache::default_vhost: false
74       logging_source: {get_attr: [NovaPlacementBase, role_data, logging_source]}
75       logging_groups: {get_attr: [NovaPlacementBase, role_data, logging_groups]}
76       step_config: &step_config
77         list_join:
78           - "\n"
79           - - {get_attr: [NovaPlacementBase, role_data, step_config]}
80             - {get_attr: [MySQLClient, role_data, step_config]}
81       service_config_settings: {get_attr: [NovaPlacementBase, role_data, service_config_settings]}
82       # BEGIN DOCKER SETTINGS
83       puppet_config:
84         config_volume: nova_placement
85         puppet_tags: nova_config
86         step_config: *step_config
87         config_image: {get_param: DockerNovaPlacementConfigImage}
88       kolla_config:
89         /var/lib/kolla/config_files/nova_placement.json:
90           command: /usr/sbin/httpd -DFOREGROUND
91           config_files:
92             - source: "/var/lib/kolla/config_files/src/*"
93               dest: "/"
94               merge: true
95               preserve_properties: true
96           permissions:
97             - path: /var/log/nova
98               owner: nova:nova
99               recurse: true
100       docker_config:
101         # start this early so it is up before computes start reporting
102         step_3:
103           nova_placement:
104             start_order: 1
105             image: {get_param: DockerNovaPlacementImage}
106             net: host
107             user: root
108             restart: always
109             volumes:
110               list_concat:
111                 - {get_attr: [ContainersCommon, volumes]}
112                 -
113                   - /var/lib/kolla/config_files/nova_placement.json:/var/lib/kolla/config_files/config.json:ro
114                   - /var/lib/config-data/puppet-generated/nova_placement/:/var/lib/kolla/config_files/src:ro
115                   - /var/log/containers/nova:/var/log/nova
116                   - /var/log/containers/httpd/nova-placement:/var/log/httpd
117                   -
118                     if:
119                       - internal_tls_enabled
120                       - /etc/pki/tls/certs/httpd:/etc/pki/tls/certs/httpd:ro
121                       - ''
122                   -
123                     if:
124                       - internal_tls_enabled
125                       - /etc/pki/tls/private/httpd:/etc/pki/tls/private/httpd:ro
126                       - ''
127             environment:
128               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
129       metadata_settings:
130         get_attr: [NovaPlacementBase, role_data, metadata_settings]
131       host_prep_tasks:
132         - name: create persistent logs directory
133           file:
134             path: "{{ item }}"
135             state: directory
136           with_items:
137             - /var/log/containers/nova
138             - /var/log/containers/httpd/nova-placement
139       upgrade_tasks:
140         - name: Stop and disable nova_placement service (running under httpd)
141           tags: step2
142           service: name=httpd state=stopped enabled=no