Merge "Add docker keystone service"
[apex-tripleo-heat-templates.git] / docker / services / heat-api-cfn.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack containerized Heat API CFN service
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerHeatApiCfnImage:
12     description: image
13     default: 'centos-binary-heat-api-cfn:latest'
14     type: string
15   # we configure all heat services in the same heat engine container
16   DockerHeatEngineImage:
17     description: image
18     default: 'centos-binary-heat-engine:latest'
19     type: string
20   EndpointMap:
21     default: {}
22     description: Mapping of service endpoint -> protocol. Typically set
23                  via parameter_defaults in the resource registry.
24     type: json
25   ServiceNetMap:
26     default: {}
27     description: Mapping of service_name -> network name. Typically set
28                  via parameter_defaults in the resource registry.  This
29                  mapping overrides those in ServiceNetMapDefaults.
30     type: json
31   DefaultPasswords:
32     default: {}
33     type: json
34
35
36 resources:
37
38   HeatBase:
39     type: ../../puppet/services/heat-api-cfn.yaml
40     properties:
41       EndpointMap: {get_param: EndpointMap}
42       ServiceNetMap: {get_param: ServiceNetMap}
43       DefaultPasswords: {get_param: DefaultPasswords}
44
45 outputs:
46   role_data:
47     description: Role data for the Heat API CFN role.
48     value:
49       service_name: {get_attr: [HeatBase, role_data, service_name]}
50       config_settings:
51         map_merge:
52           - get_attr: [HeatBase, role_data, config_settings]
53           - apache::default_vhost: false
54       step_config: {get_attr: [HeatBase, role_data, step_config]}
55       service_config_settings: {get_attr: [HeatBase, role_data, service_config_settings]}
56       # BEGIN DOCKER SETTINGS
57       docker_image: &heat_api_cfn_image
58         list_join:
59           - '/'
60           - [ {get_param: DockerNamespace}, {get_param: DockerHeatApiCfnImage} ]
61       puppet_tags: heat_config,file,concat,file_line
62       config_volume: heat
63       config_image:
64         list_join:
65           - '/'
66           - [ {get_param: DockerNamespace}, {get_param: DockerHeatEngineImage} ]
67       kolla_config:
68          /var/lib/kolla/config_files/heat_api_cfn.json:
69            command: /usr/bin/heat-api-cfn --config-file /usr/share/heat/heat-dist.conf --config-file /etc/heat/heat.conf
70            config_files:
71            - dest: /etc/heat/heat.conf
72              owner: heat
73              perm: '0640'
74              source: /var/lib/kolla/config_files/src/etc/heat/heat.conf
75       docker_config:
76         step_4:
77           heat_api_cfn:
78             image: *heat_api_cfn_image
79             net: host
80             privileged: false
81             restart: always
82             volumes:
83               - /run:/run
84               - /var/lib/kolla/config_files/heat_api_cfn.json:/var/lib/kolla/config_files/config.json:ro
85               - /var/lib/config-data/heat/:/var/lib/kolla/config_files/src:ro
86               - /etc/hosts:/etc/hosts:ro
87               - /etc/localtime:/etc/localtime:ro
88               - /dev:/dev
89             environment:
90               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS