Added optional pod labels (#10990)

Signed-off-by: Jurgen Kleverwal <jurgen.kleverwal@topicus.nl>
This commit is contained in:
Jurgen Kleverwal
2019-01-30 11:07:12 -08:00
committed by Kubernetes Prow Robot
parent b23f62747b
commit 38d43e34cc
3 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: fluent-bit
version: 1.5.0
version: 1.5.1
appVersion: 1.0.3
description: Fast and Lightweight Log/Data Forwarder for Linux, BSD and OSX
keywords:
+1
View File
@@ -78,6 +78,7 @@ The following table lists the configurable parameters of the Fluent-Bit chart an
| **General** |
| `annotations` | Optional deamonset set annotations | `NULL` |
| `podAnnotations` | Optional pod annotations | `NULL` |
| `podLabels` | Optional pod labels | `NULL` |
| `fullConfigMap` | User has provided entire config (parsers + system) | `false` |
| `existingConfigMap` | ConfigMap override | `` |
| `extraEntries.input` | Extra entries for existing [INPUT] section | `` |
@@ -15,6 +15,9 @@ spec:
labels:
app: {{ template "fluent-bit.name" . }}
release: {{ .Release.Name }}
{{- if .Values.podLabels }}
{{ toYaml .Values.podLabels | indent 8 }}
{{- end }}
annotations:
checksum/config: {{ include (print $.Template.BasePath "/config.yaml") . | sha256sum }}
{{- if .Values.podAnnotations }}