openstack-helm-infra/nagios/templates/bin/_nagios-readiness.sh.tpl
Steve Wilkerson 046742c9c6 Nagios: Update logging, add readiness probe
This updates the Nagios chart configuration to not use syslog for
logging, removes the logging of notifications, and drastically
increases the number of concurrent checks executed.

This also removes the hostPath for Nagios logs, as it seems to add
no value over what's already reported to the console.  Finally, as
Nagios's log file has the potential to grow very rapidly while the
service has no means to disable logging to disk, this adds a
readiness probe that both checks whether Nagios's endpoint is
being served and clears out the log file by redirecting the
no-op commands output to the nagios log file.

Change-Id: I81151c48ef4e0b7877f595c271f55b8fd479e8c1
2019-01-17 11:12:16 -06:00

28 lines
963 B
Smarty

#!/bin/bash
{{/*
Copyright 2019 The Openstack-Helm Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/}}
# NOTE(sw5822): Redirect no-op operator output to Nagios log file to clean out
# Nagios's log file, since Nagios doesn't support logging to /dev/null
: > /opt/nagios/var/log/nagios.log
# Check whether Nagios endpoint is reachable
reply=$(curl -s -o /dev/null -w %{http_code} http://127.0.0.1:8000/nagios)
if [ \"$reply\" -lt 200 -o \"$reply\" -ge 400 ]; then
exit 1
fi