Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/fluent-bit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ keywords:
- logging
- fluent-bit
- fluentd
version: 0.53.0
version: 0.54.0
appVersion: 4.0.7
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/fluentd/fluentbit/icon/fluentbit-icon-color.svg
home: https://fluentbit.io/
Expand All @@ -23,4 +23,4 @@ maintainers:
annotations:
artifacthub.io/changes: |
- kind: changed
Comment thread
gsmith-sas marked this conversation as resolved.
Outdated
description: "Make securityContext of hot reload container configurable in fluent-bit chart"
description: "Allow automountServiceAccountToken override at pod level"
Comment thread
gsmith-sas marked this conversation as resolved.
Outdated
4 changes: 3 additions & 1 deletion charts/fluent-bit/templates/_pod.tpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{{- define "fluent-bit.pod" -}}
{{- if ne .Values.serviceAccount.automountServiceAccountToken nil }}
{{- if ne .Values.automountServiceAccountToken nil }}
automountServiceAccountToken: {{ .Values.automountServiceAccountToken }}
{{- else if ne .Values.serviceAccount.automountServiceAccountToken nil }}
Comment thread
gsmith-sas marked this conversation as resolved.
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
{{- end }}
Comment thread
gsmith-sas marked this conversation as resolved.
serviceAccountName: {{ include "fluent-bit.serviceAccountName" . }}
Expand Down
13 changes: 13 additions & 0 deletions charts/fluent-bit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,21 @@ serviceAccount:
create: true
annotations: {}
name:
# Automatically mount the ServiceAccount
# API access Token on all pod(s) linked
# to this ServiceAccount (i.e. controls
# things at *ServiceAccount* level)?
Comment thread
gsmith-sas marked this conversation as resolved.
Outdated
automountServiceAccountToken:


# Automatically mount the ServiceAccount
# API access Token on the Fluent Bit pod(s)
# (i.e. controls things at *pod* level)?
# NOTE: This setting can be used to override
# serviceAccount.automountServiceAccountToken
# for the Fluent Bit pod(s).
automountServiceAccountToken:
Comment thread
gsmith-sas marked this conversation as resolved.
Outdated

rbac:
create: true
nodeAccess: false
Expand Down