[bitnami/kubernetes-event-exporter] Update NOTES.txt (#9157)

* [bitnami/kubernetes-event-exporter] Update NOTES.txt

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Update NOTES.txt

Signed-off-by: Miguel Ruiz miruiz@vmware.com
This commit is contained in:
Miguel Ruiz
2022-02-22 11:01:10 +01:00
committed by GitHub
parent a000a971dd
commit 11d5103c51
2 changed files with 25 additions and 1 deletions

View File

@@ -26,4 +26,4 @@ name: kubernetes-event-exporter
sources:
- https://github.com/bitnami/bitnami-docker-kubernetes-event-exporter
- https://github.com/opsgenie/kubernetes-event-exporter
version: 1.4.0
version: 1.4.1

View File

@@ -4,8 +4,32 @@ APP VERSION: {{ .Chart.AppVersion }}
** Please be patient while the chart is being deployed **
{{- if .Values.diagnosticMode.enabled }}
The chart has been deployed in diagnostic mode. All probes have been disabled and the command has been overwritten with:
command: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.command "context" $) | nindent 4 }}
args: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.args "context" $) | nindent 4 }}
Get the list of pods by executing:
kubectl get pods --namespace {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }}
Access the pod you want to debug by executing
kubectl exec --namespace {{ .Release.Namespace }} -ti <NAME OF THE POD> -- bash
In order to replicate the container startup scripts execute this command:
kubernetes-event-exporter -conf=/data/config.yaml
{{- else }}
To verify that kubernetes-event-exporter has started, run:
kubectl get deploy -w --namespace {{ .Release.Namespace }} {{ template "common.names.fullname" . }}
By default, the kubernetes-event-exporter will dump events to stdout.
To configure additional endpoints, redeploy the chart overwritting the field 'config' at your 'values.yml'.
{{- end }}
{{- include "common.warnings.rollingTag" .Values.image }}