mirror of
https://github.com/bitnami/charts.git
synced 2026-03-06 06:58:50 +08:00
35 lines
1.8 KiB
YAML
35 lines
1.8 KiB
YAML
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if and .Values.forwarder.serviceAccount.create .Values.forwarder.enabled }}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ include "fluentd.forwarder.serviceAccountName" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/part-of: forwarder
|
|
{{- if or .Values.forwarder.serviceAccount.annotations .Values.commonAnnotations }}
|
|
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.forwarder.serviceAccount.annotations .Values.commonAnnotations ) "context" . ) }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
automountServiceAccountToken: {{ .Values.forwarder.serviceAccount.automountServiceAccountToken }}
|
|
{{- end -}}
|
|
{{- if and .Values.aggregator.serviceAccount.create .Values.aggregator.enabled }}
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ include "fluentd.aggregator.serviceAccountName" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/part-of: aggregator
|
|
{{- if or .Values.aggregator.serviceAccount.annotations .Values.commonAnnotations }}
|
|
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.aggregator.serviceAccount.annotations .Values.commonAnnotations ) "context" . ) }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
automountServiceAccountToken: {{ .Values.aggregator.serviceAccount.automountServiceAccountToken }}
|
|
{{- end -}}
|