Add upgrade tasks for opstools services
authorMartin Mágr <mmagr@redhat.com>
Thu, 9 Feb 2017 13:12:41 +0000 (14:12 +0100)
committerMartin Mágr <mmagr@redhat.com>
Tue, 14 Feb 2017 16:03:14 +0000 (17:03 +0100)
This patch adds upgrade tasks for sensu-client, fluentd and collectd

Change-Id: I3a8096159664b1934b34f6c79b8afb4a3dc645c8

puppet/services/logging/fluentd-client.yaml
puppet/services/metrics/collectd.yaml
puppet/services/monitoring/sensu-client.yaml

index 769ab68..94c63d3 100644 (file)
@@ -62,3 +62,12 @@ outputs:
               get_attr: [LoggingConfiguration, LoggingSharedKey]
       step_config: |
         include ::tripleo::profile::base::logging::fluentd
+      upgrade_tasks:
+        - name: Check status of fluentd service
+          shell: >
+            /usr/bin/systemctl show fluentd --property ActiveState |
+            grep '\bactive\b'
+          tags: step0,validation
+        - name: Stop fluentd service
+          tags: step2
+          service: name=fluentd state=stopped
index e4e7dac..a3e3b84 100644 (file)
@@ -109,3 +109,12 @@ outputs:
               .flatten().distinct()
       step_config: |
         include ::tripleo::profile::base::metrics::collectd
+      upgrade_tasks:
+        - name: Check status of collectd service
+          shell: >
+            /usr/bin/systemctl show collectd --property ActiveState |
+            grep '\bactive\b'
+          tags: step0,validation
+        - name: Stop collectd service
+          tags: step2
+          service: name=collectd state=stopped
index 76ba59c..d74a68a 100644 (file)
@@ -62,3 +62,12 @@ outputs:
                     region: {get_param: KeystoneRegion}
       step_config: |
         include ::tripleo::profile::base::monitoring::sensu
+      upgrade_tasks:
+        - name: Check status of sensu-client service
+          shell: >
+            /usr/bin/systemctl show sensu-client --property ActiveState |
+            grep '\bactive\b'
+          tags: step0,validation
+        - name: Stop sensu-client service
+          tags: step2
+          service: name=sensu-client state=stopped