Merge "docker bootstrap service commands"
[apex-tripleo-heat-templates.git] / puppet / services / gnocchi-statsd.yaml
1 heat_template_version: pike
2
3 description: >
4   Gnocchi service configured with Puppet
5
6 parameters:
7   ServiceNetMap:
8     default: {}
9     description: Mapping of service_name -> network name. Typically set
10                  via parameter_defaults in the resource registry.  This
11                  mapping overrides those in ServiceNetMapDefaults.
12     type: json
13   DefaultPasswords:
14     default: {}
15     type: json
16   RoleName:
17     default: ''
18     description: Role name on which the service is applied
19     type: string
20   RoleParameters:
21     default: {}
22     description: Parameters specific to the role
23     type: json
24   EndpointMap:
25     default: {}
26     description: Mapping of service endpoint -> protocol. Typically set
27                  via parameter_defaults in the resource registry.
28     type: json
29   MonitoringSubscriptionGnocchiStatsd:
30     default: 'overcloud-gnocchi-statsd'
31     type: string
32
33 resources:
34   GnocchiServiceBase:
35     type: ./gnocchi-base.yaml
36     properties:
37       ServiceNetMap: {get_param: ServiceNetMap}
38       DefaultPasswords: {get_param: DefaultPasswords}
39       EndpointMap: {get_param: EndpointMap}
40       RoleName: {get_param: RoleName}
41       RoleParameters: {get_param: RoleParameters}
42
43 outputs:
44   role_data:
45     description: Role data for the Gnocchi role.
46     value:
47       service_name: gnocchi_statsd
48       monitoring_subscription: {get_param: MonitoringSubscriptionGnocchiStatsd}
49       config_settings:
50         map_merge:
51           - get_attr: [GnocchiServiceBase, role_data, config_settings]
52           - tripleo.gnocchi_statsd.firewall_rules:
53               '140 gnocchi-statsd':
54                 dport: 8125
55                 proto: 'udp'
56       step_config: |
57         include ::tripleo::profile::base::gnocchi::statsd
58       upgrade_tasks:
59         - name: Check if gnocchi_statsd is deployed
60           command: systemctl is-enabled openstack-gnocchi-statsd
61           tags: common
62           ignore_errors: True
63           register: gnocchi_statsd_enabled
64         - name: "PreUpgrade step0,validation: Check service openstack-gnocchi-statsd is running"
65           shell: /usr/bin/systemctl show 'openstack-gnocchi-statsd' --property ActiveState | grep '\bactive\b'
66           when: gnocchi_statsd_enabled.rc == 0
67           tags: step0,validation
68         - name: Stop gnocchi_statsd service
69           tags: step1
70           when: gnocchi_statsd_enabled.rc == 0
71           service: name=openstack-gnocchi-statsd state=stopped