Merge "Fixes multiple issues with retry function in rhel-registration."
[apex-tripleo-heat-templates.git] / docker / services / gnocchi-statsd.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack containerized Gnocchi Statsd service
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerGnocchiStatsdImage:
12     description: image
13     default: 'centos-binary-gnocchi-statsd: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
30 resources:
31
32   GnocchiStatsdBase:
33     type: ../../puppet/services/gnocchi-statsd.yaml
34     properties:
35       EndpointMap: {get_param: EndpointMap}
36       ServiceNetMap: {get_param: ServiceNetMap}
37       DefaultPasswords: {get_param: DefaultPasswords}
38
39 outputs:
40   role_data:
41     description: Role data for the Gnocchi API role.
42     value:
43       service_name: {get_attr: [GnocchiStatsdBase, role_data, service_name]}
44       config_settings: {get_attr: [GnocchiStatsdBase, role_data, config_settings]}
45       step_config: &step_config
46         get_attr: [GnocchiStatsdBase, role_data, step_config]
47       service_config_settings: {get_attr: [GnocchiStatsdBase, role_data, service_config_settings]}
48       # BEGIN DOCKER SETTINGS
49       puppet_config:
50         config_volume: gnocchi
51         puppet_tags: gnocchi_config
52         step_config: *step_config
53         config_image: &gnocchi_statsd_image
54           list_join:
55             - '/'
56             - [ {get_param: DockerNamespace}, {get_param: DockerGnocchiStatsdImage} ]
57       kolla_config:
58          /var/lib/kolla/config_files/gnocchi-statsd.json:
59            command: /usr/bin/gnocchi-statsd
60            config_files:
61            - dest: /etc/gnocchi/gnocchi.conf
62              owner: gnocchi
63              perm: '0640'
64              source: /var/lib/kolla/config_files/src/etc/gnocchi/gnocchi.conf
65       docker_config:
66         step_4:
67           gnocchi_statsd:
68             image: *gnocchi_statsd_image
69             net: host
70             privileged: false
71             restart: always
72             volumes:
73               - /var/lib/kolla/config_files/gnocchi-statsd.json:/var/lib/kolla/config_files/config.json:ro
74               - /var/lib/config-data/gnocchi/:/var/lib/kolla/config_files/src:ro
75               - /etc/hosts:/etc/hosts:ro
76               - /etc/localtime:/etc/localtime:ro
77             environment:
78               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS