Add role specific information to the service template
[apex-tripleo-heat-templates.git] / docker / services / glance-api.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack Glance service configured with Puppet
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerGlanceApiImage:
12     description: image
13     default: 'centos-binary-glance-api:latest'
14     type: string
15   EndpointMap:
16     default: {}
17     description: Mapping of service endpoint -> protocol. Typically set
18                  via parameter_defaults in the resource registry.
19     type: json
20   ServiceNetMap:
21     default: {}
22     description: Mapping of service_name -> network name. Typically set
23                  via parameter_defaults in the resource registry.  This
24                  mapping overrides those in ServiceNetMapDefaults.
25     type: json
26   DefaultPasswords:
27     default: {}
28     type: json
29   RoleName:
30     default: ''
31     description: Role name on which the service is applied
32     type: string
33   RoleParameters:
34     default: {}
35     description: Parameters specific to the role
36   EnableInternalTLS:
37     type: boolean
38     default: false
39
40 conditions:
41
42   internal_tls_enabled: {equals: [{get_param: EnableInternalTLS}, true]}
43
44
45 resources:
46
47   ContainersCommon:
48     type: ./containers-common.yaml
49
50   GlanceApiPuppetBase:
51     type: ../../puppet/services/glance-api.yaml
52     properties:
53       EndpointMap: {get_param: EndpointMap}
54       ServiceNetMap: {get_param: ServiceNetMap}
55       DefaultPasswords: {get_param: DefaultPasswords}
56       RoleName: {get_param: RoleName}
57       RoleParameters: {get_param: RoleParameters}
58
59 outputs:
60   role_data:
61     description: Role data for the Glance API role.
62     value:
63       service_name: {get_attr: [GlanceApiPuppetBase, role_data, service_name]}
64       config_settings:
65         map_merge:
66           - get_attr: [GlanceApiPuppetBase, role_data, config_settings]
67           - glance::api::sync_db: false
68       step_config: &step_config
69         get_attr: [GlanceApiPuppetBase, role_data, step_config]
70       service_config_settings: {get_attr: [GlanceApiPuppetBase, role_data, service_config_settings]}
71       # BEGIN DOCKER SETTINGS #
72       puppet_config:
73         config_volume: glance_api
74         puppet_tags: glance_api_config,glance_api_paste_ini,glance_swift_config,glance_cache_config
75         step_config: *step_config
76         config_image: &glance_image
77           list_join:
78             - '/'
79             - [ {get_param: DockerNamespace}, {get_param: DockerGlanceApiImage} ]
80       kolla_config:
81         /var/lib/kolla/config_files/glance-api.json:
82           command: /usr/bin/glance-api --config-file /usr/share/glance/glance-api-dist.conf --config-file /etc/glance/glance-api.conf
83         /var/lib/kolla/config_files/glance_api_tls_proxy.json:
84           command: /usr/sbin/httpd -DFOREGROUND
85       docker_config:
86         # Kolla_bootstrap/db_sync runs before permissions set by kolla_config
87         step_3:
88           glance_init_logs:
89             start_order: 0
90             image: *glance_image
91             privileged: false
92             user: root
93             volumes:
94               - /var/log/containers/glance:/var/log/glance
95             command: ['/bin/bash', '-c', 'chown -R glance:glance /var/log/glance']
96           glance_api_db_sync:
97             start_order: 1
98             image: *glance_image
99             net: host
100             privileged: false
101             detach: false
102             volumes: &glance_volumes
103               list_concat:
104                 - {get_attr: [ContainersCommon, volumes]}
105                 -
106                   - /var/lib/kolla/config_files/glance-api.json:/var/lib/kolla/config_files/config.json
107                   - /var/lib/config-data/glance_api/etc/glance/:/etc/glance/:ro
108                   - /var/log/containers/glance:/var/log/glance
109             environment:
110               - KOLLA_BOOTSTRAP=True
111               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
112         step_4:
113           map_merge:
114             - glance_api:
115                 start_order: 2
116                 image: *glance_image
117                 net: host
118                 privileged: false
119                 restart: always
120                 volumes: *glance_volumes
121                 environment:
122                   - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
123             - if:
124                 - internal_tls_enabled
125                 - glance_api_tls_proxy:
126                     start_order: 2
127                     image: *glance_image
128                     net: host
129                     user: root
130                     restart: always
131                     volumes:
132                       list_concat:
133                         - {get_attr: [ContainersCommon, volumes]}
134                         -
135                           - /var/lib/kolla/config_files/glance_api_tls_proxy.json:/var/lib/kolla/config_files/config.json:ro
136                           - /var/lib/config-data/glance_api/etc/httpd/:/etc/httpd/:ro
137                           - /etc/pki/tls/certs/httpd:/etc/pki/tls/certs/httpd:ro
138                           - /etc/pki/tls/private/httpd:/etc/pki/tls/private/httpd:ro
139                     environment:
140                       - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
141                 - {}
142       host_prep_tasks:
143         - name: create persistent logs directory
144           file:
145             path: /var/log/containers/glance
146             state: directory
147       upgrade_tasks:
148         - name: Stop and disable glance_api service
149           tags: step2
150           service: name=openstack-glance-api state=stopped enabled=no