diff options
author | Emilien Macchi <emilien@redhat.com> | 2017-02-27 13:04:08 -0500 |
---|---|---|
committer | Emilien Macchi <emilien@redhat.com> | 2017-03-02 12:16:20 +0000 |
commit | 53225d57b1c4e3de722f9cdc25eefa9a3dec1e97 (patch) | |
tree | 3fd6b9776e3ac76b3eea744c1b0f276f6ef3d0e0 /puppet/services/monitoring | |
parent | 74a99e72828c2bda46c856fc4983ad1ae1a4472f (diff) |
upgrades/validation: only run validation when services exist
During upgrades, validation test if a service is running before the
upgrade process starts.
In some cases, servies doesn't exist yet so we don't want to run the
validation.
This patch makes sure we check if the service is actually present on the
system before validating it's running correctly.
Also it makes sure that services are enabled before trying to stop them.
It allows use-cases where we want to add new services during an upgrade.
Also install new packages of services added in Ocata, so we can validate
upgrades on scenarios jobs.
Change-Id: Ib48fb6b1557be43956557cbde4cbe26b53a50bd8
(cherry picked from commit 7c84a9b390c469e716e5802eef078d2df3902c6a)
Diffstat (limited to 'puppet/services/monitoring')
-rw-r--r-- | puppet/services/monitoring/sensu-client.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/puppet/services/monitoring/sensu-client.yaml b/puppet/services/monitoring/sensu-client.yaml index c0826549..aba2b1ed 100644 --- a/puppet/services/monitoring/sensu-client.yaml +++ b/puppet/services/monitoring/sensu-client.yaml @@ -63,11 +63,22 @@ outputs: step_config: | include ::tripleo::profile::base::monitoring::sensu upgrade_tasks: + - name: Check if sensu_client is deployed + command: systemctl is-enabled sensu-client + tags: common + ignore_errors: True + register: sensu_client_enabled - name: Check status of sensu-client service shell: > /usr/bin/systemctl show sensu-client --property ActiveState | grep '\bactive\b' + when: sensu_client_enabled.rc == 0 tags: step0,validation - name: Stop sensu-client service tags: step1 + when: sensu_client_enabled.rc == 0 service: name=sensu-client state=stopped + - name: Install sensu package if it was disabled + tags: step3 + yum: name=sensu state=latest + when: sensu_client.rc != 0 |