Merge "Pluggable server type per Role"
[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   ContainersCommon:
33     type: ./containers-common.yaml
34
35   GnocchiStatsdBase:
36     type: ../../puppet/services/gnocchi-statsd.yaml
37     properties:
38       EndpointMap: {get_param: EndpointMap}
39       ServiceNetMap: {get_param: ServiceNetMap}
40       DefaultPasswords: {get_param: DefaultPasswords}
41
42 outputs:
43   role_data:
44     description: Role data for the Gnocchi API role.
45     value:
46       service_name: {get_attr: [GnocchiStatsdBase, role_data, service_name]}
47       config_settings: {get_attr: [GnocchiStatsdBase, role_data, config_settings]}
48       step_config: &step_config
49         get_attr: [GnocchiStatsdBase, role_data, step_config]
50       service_config_settings: {get_attr: [GnocchiStatsdBase, role_data, service_config_settings]}
51       # BEGIN DOCKER SETTINGS
52       puppet_config:
53         config_volume: gnocchi
54         puppet_tags: gnocchi_config
55         step_config: *step_config
56         config_image: &gnocchi_statsd_image
57           list_join:
58             - '/'
59             - [ {get_param: DockerNamespace}, {get_param: DockerGnocchiStatsdImage} ]
60       kolla_config:
61         /var/lib/kolla/config_files/gnocchi-statsd.json:
62           command: /usr/bin/gnocchi-statsd
63       docker_config:
64         step_4:
65           gnocchi_statsd:
66             image: *gnocchi_statsd_image
67             net: host
68             privileged: false
69             restart: always
70             volumes:
71               yaql:
72                 expression: $.data.common.concat($.data.service)
73                 data:
74                   common: {get_attr: [ContainersCommon, volumes]}
75                   service:
76                     - /var/lib/kolla/config_files/gnocchi-statsd.json:/var/lib/kolla/config_files/config.json:ro
77                     - /var/lib/config-data/gnocchi/etc/gnocchi/:/etc/gnocchi/:ro
78             environment:
79               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
80       upgrade_tasks:
81         - name: Stop and disable openstack-gnocchi-statsd service
82           tags: step2
83           service: name=openstack-gnocchi-statsd.service state=stopped enabled=no