summaryrefslogtreecommitdiffstats
path: root/deployments/helm/v2/onap4k8s/fluentd/templates/NOTES.txt
diff options
context:
space:
mode:
authorRitu Sood <ritu.sood@intel.com>2020-05-05 20:54:16 -0700
committerRitu Sood <ritu.sood@intel.com>2020-06-19 17:42:08 +0000
commitf4203f9350a797a0d0f71b8a9225469ad6346f01 (patch)
tree6fb8f0d6cbc73c54ac4181366ebe42d8f1713552 /deployments/helm/v2/onap4k8s/fluentd/templates/NOTES.txt
parent7b860ae60bf9686b449ab2fe3f18c33944bdd71c (diff)
ONAP4K8s helm chart
ONAP4K8s helm chart with ONAP4K8s microservices and related items like MongoDB, etcd, Fluentd. Signed-off-by: Ritu Sood <ritu.sood@intel.com> Issue-ID: MULTICLOUD-1065 Change-Id: Ibf52144b7ac44ffd96fa7175b551b10c25e652f9
Diffstat (limited to 'deployments/helm/v2/onap4k8s/fluentd/templates/NOTES.txt')
-rw-r--r--deployments/helm/v2/onap4k8s/fluentd/templates/NOTES.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/deployments/helm/v2/onap4k8s/fluentd/templates/NOTES.txt b/deployments/helm/v2/onap4k8s/fluentd/templates/NOTES.txt
new file mode 100644
index 00000000..eea7a2aa
--- /dev/null
+++ b/deployments/helm/v2/onap4k8s/fluentd/templates/NOTES.txt
@@ -0,0 +1,30 @@
+** Please be patient while the chart is being deployed **
+
+ To verify that Fluentd has started, run:
+
+ kubectl get all -l "app.kubernetes.io/name={{ include "fluentd.name" . }},app.kubernetes.io/instance={{ .Release.Name }}"
+{{ if and .Values.aggregator.enabled .Values.forwarder.enabled (not .Values.aggregator.configMap) }}
+ Logs are captured on each node by the forwarder pods and then sent to the aggregator pods. By default, the aggregator pods send the logs to the standard output.
+ You can see all the logs by running this command:
+
+ kubectl logs -l "app.kubernetes.io/component=aggregator"
+
+ You can mount your own configuration files to the aggregators and the forwarders. For example, this is useful if you want to forward the aggregated logs to Elasticsearch or another service.
+{{- else if and .Values.aggregator.enabled (not .Values.forwarder.enabled) }}
+ You have deployed Fluentd in aggregator-only mode. Logs received by the aggregator will be thrown to the standard output by default.
+ You can see all the logs by running this command:
+
+ kubectl logs -l "app.kubernetes.io/component=aggregator"
+
+ You can mount your own configuration files to the aggregators. For example, this is useful if you want to forward the logs to Elasticsearch or another service.
+{{- else if and (not .Values.aggregator.enabled) (not .Values.forwarder.configMap) }}
+ Logs are captured on each node by the forwarder pods and sent to the standard output by default.
+ You can see all the logs by running this command:
+
+ kubectl logs -l "app.kubernetes.io/component=forwarder"
+
+ You can mount your own configuration files to the forwarders. For example, this is useful if you want to forward the logs to Elasticsearch or another service.
+{{- end }}
+
+{{- include "fluentd.validateValues" . }}
+{{- include "fluentd.checkRollingTags" . -}}