046742c9c6
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
32 lines
1.0 KiB
YAML
32 lines
1.0 KiB
YAML
{{/*
|
|
Copyright 2017 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.
|
|
*/}}
|
|
|
|
{{- if .Values.manifests.configmap_bin }}
|
|
{{- $envAll := . }}
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: nagios-bin
|
|
data:
|
|
apache.sh: |
|
|
{{ tuple "bin/_apache.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
nagios-readiness.sh: |
|
|
{{ tuple "bin/_nagios-readiness.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
image-repo-sync.sh: |+
|
|
{{- include "helm-toolkit.scripts.image_repo_sync" . | indent 4 }}
|
|
{{- end }}
|