mirror of
https://github.com/bitnami/charts.git
synced 2026-03-11 15:37:20 +08:00
313 lines
16 KiB
YAML
313 lines
16 KiB
YAML
{{- /*
|
|
Copyright VMware, Inc.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if .Values.aggregator.enabled -}}
|
|
apiVersion: {{ include "common.capabilities.statefulset.apiVersion" . }}
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/component: aggregator
|
|
## Istio Labels: https://istio.io/docs/ops/deployment/requirements/
|
|
app: aggregator
|
|
{{- if or .Values.aggregator.annotations .Values.commonAnnotations }}
|
|
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.aggregator.annotations .Values.commonAnnotations ) "context" . ) }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.aggregator.podLabels .Values.commonLabels ) "context" . ) }}
|
|
selector:
|
|
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
|
|
app.kubernetes.io/component: aggregator
|
|
serviceName: {{ include "common.names.fullname" . }}-headless
|
|
podManagementPolicy: {{ .Values.aggregator.podManagementPolicy }}
|
|
{{- if not .Values.aggregator.autoscaling.enabled }}
|
|
replicas: {{ .Values.aggregator.replicaCount }}
|
|
{{- end }}
|
|
updateStrategy: {{- toYaml .Values.aggregator.updateStrategy | nindent 4 }}
|
|
template:
|
|
metadata:
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" $podLabels "context" $ ) | nindent 8 }}
|
|
app.kubernetes.io/component: aggregator
|
|
app: aggregator
|
|
annotations:
|
|
checksum/config: {{ include (print $.Template.BasePath "/aggregator-configmap.yaml") . | sha256sum }}
|
|
{{- if .Values.aggregator.podAnnotations }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.aggregator.podAnnotations "context" $) | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- include "fluentd.imagePullSecrets" . | nindent 6 }}
|
|
{{- if .Values.aggregator.hostAliases }}
|
|
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.hostAliases "context" $) | nindent 8 }}
|
|
{{- end }}
|
|
serviceAccountName: {{ template "fluentd.aggregator.serviceAccountName" . }}
|
|
{{- if .Values.aggregator.podSecurityContext.enabled }}
|
|
securityContext: {{- omit .Values.aggregator.podSecurityContext "enabled" | toYaml | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.affinity }}
|
|
affinity: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.affinity "context" $) | nindent 8 }}
|
|
{{- else }}
|
|
affinity:
|
|
podAffinity: {{- include "common.affinities.pods" (dict "type" .Values.aggregator.podAffinityPreset "component" "aggregator" "customLabels" $podLabels "context" $) | nindent 10 }}
|
|
podAntiAffinity: {{- include "common.affinities.pods" (dict "type" .Values.aggregator.podAntiAffinityPreset "component" "aggregator" "customLabels" $podLabels "context" $) | nindent 10 }}
|
|
nodeAffinity: {{- include "common.affinities.nodes" (dict "type" .Values.aggregator.nodeAffinityPreset.type "key" .Values.aggregator.nodeAffinityPreset.key "values" .Values.aggregator.nodeAffinityPreset.values) | nindent 10 }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.nodeSelector }}
|
|
nodeSelector: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.nodeSelector "context" $) | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.tolerations }}
|
|
tolerations: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.tolerations "context" $) | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.schedulerName }}
|
|
schedulerName: {{ .Values.aggregator.schedulerName }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.topologySpreadConstraints }}
|
|
topologySpreadConstraints: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.topologySpreadConstraints "context" .) | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.priorityClassName }}
|
|
priorityClassName: {{ .Values.aggregator.priorityClassName | quote }}
|
|
{{- end }}
|
|
initContainers:
|
|
{{- if .Values.aggregator.extraGems }}
|
|
- name: install-extra-gems
|
|
image: {{ include "fluentd.aggregator.image" . }}
|
|
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
|
|
command:
|
|
- sh
|
|
- -c
|
|
args:
|
|
- |-
|
|
cd /tmp
|
|
|
|
# install extra gems
|
|
{{- range $gem := .Values.aggregator.extraGems }}
|
|
{{- if kindIs "string" $gem }}
|
|
fluent-gem install {{ $gem }} --no-document
|
|
{{- else }}
|
|
fluent-gem install {{ $gem.name }}{{ if $gem.version }} -v {{ $gem.version }}{{ end }} --no-document
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
# copy installed gems to shared dir
|
|
cp -r /opt/bitnami/fluentd/gems/* /gems/
|
|
cp -r /opt/bitnami/fluentd/specifications/* /specifications/
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
runAsUser: 0
|
|
volumeMounts:
|
|
- name: gems
|
|
mountPath: /gems
|
|
- name: specifications
|
|
mountPath: /specifications
|
|
{{- end }}
|
|
{{- if .Values.aggregator.initContainers }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.aggregator.initContainers "context" $ ) | nindent 8 }}
|
|
{{- end }}
|
|
terminationGracePeriodSeconds: {{ .Values.aggregator.terminationGracePeriodSeconds }}
|
|
containers:
|
|
- name: fluentd
|
|
image: {{ include "fluentd.aggregator.image" . }}
|
|
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
|
|
{{- if .Values.aggregator.containerSecurityContext.enabled }}
|
|
securityContext: {{- omit .Values.aggregator.containerSecurityContext "enabled" | toYaml | nindent 12 }}
|
|
{{ end }}
|
|
{{- if .Values.aggregator.lifecycleHooks }}
|
|
lifecycle: {{- include "common.tplvalues.render" ( dict "value" .Values.aggregator.lifecycleHooks "context" $ ) | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.diagnosticMode.enabled }}
|
|
command: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.command "context" $) | nindent 12 }}
|
|
args: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.args "context" $) | nindent 12 }}
|
|
{{- else }}
|
|
{{- if .Values.aggregator.command }}
|
|
command: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.command "context" $) | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.args }}
|
|
args: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.args "context" $) | nindent 12 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
env:
|
|
- name: BITNAMI_DEBUG
|
|
value: {{ ternary "true" "false" (or .Values.image.debug .Values.diagnosticMode.enabled) | quote }}
|
|
- name: FLUENTD_CONF
|
|
value: {{ .Values.aggregator.configFile }}
|
|
- name: FLUENTD_OPT
|
|
value: {{ .Values.aggregator.extraArgs | quote }}
|
|
{{- if .Values.aggregator.extraEnvVars }}
|
|
{{- toYaml .Values.aggregator.extraEnvVars | nindent 12 }}
|
|
{{- end }}
|
|
envFrom:
|
|
{{- if .Values.aggregator.extraEnvVarsCM }}
|
|
- configMapRef:
|
|
name: {{ include "common.tplvalues.render" (dict "value" .Values.aggregator.extraEnvVarsCM "context" $) }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.extraEnvVarsSecret }}
|
|
- secretRef:
|
|
name: {{ include "common.tplvalues.render" (dict "value" .Values.aggregator.extraEnvVarsSecret "context" $) }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.resources }}
|
|
resources: {{- toYaml .Values.aggregator.resources | nindent 12 }}
|
|
{{- end }}
|
|
ports:
|
|
{{- if .Values.aggregator.port }}
|
|
- name: tcp
|
|
containerPort: {{ .Values.aggregator.port }}
|
|
protocol: TCP
|
|
{{- end }}
|
|
{{- if .Values.aggregator.containerPorts }}
|
|
{{- toYaml .Values.aggregator.containerPorts | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.enabled }}
|
|
- name: tcp-metrics
|
|
containerPort: {{ .Values.metrics.service.port }}
|
|
protocol: TCP
|
|
{{- end }}
|
|
{{- if not .Values.diagnosticMode.enabled }}
|
|
{{- if .Values.aggregator.customStartupProbe }}
|
|
startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.customStartupProbe "context" $) | nindent 12 }}
|
|
{{- else if .Values.aggregator.startupProbe.enabled }}
|
|
startupProbe:
|
|
httpGet:
|
|
path: {{ .Values.aggregator.startupProbe.httpGet.path }}
|
|
port: {{ .Values.aggregator.startupProbe.httpGet.port }}
|
|
initialDelaySeconds: {{ .Values.aggregator.startupProbe.initialDelaySeconds }}
|
|
periodSeconds: {{ .Values.aggregator.startupProbe.periodSeconds }}
|
|
timeoutSeconds: {{ .Values.aggregator.startupProbe.timeoutSeconds }}
|
|
successThreshold: {{ .Values.aggregator.startupProbe.successThreshold }}
|
|
failureThreshold: {{ .Values.aggregator.startupProbe.failureThreshold }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.customLivenessProbe }}
|
|
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.customLivenessProbe "context" $) | nindent 12 }}
|
|
{{- else if .Values.aggregator.livenessProbe.enabled }}
|
|
livenessProbe:
|
|
httpGet:
|
|
path: {{ .Values.aggregator.livenessProbe.httpGet.path }}
|
|
port: {{ .Values.aggregator.livenessProbe.httpGet.port }}
|
|
initialDelaySeconds: {{ .Values.aggregator.livenessProbe.initialDelaySeconds }}
|
|
periodSeconds: {{ .Values.aggregator.livenessProbe.periodSeconds }}
|
|
timeoutSeconds: {{ .Values.aggregator.livenessProbe.timeoutSeconds }}
|
|
successThreshold: {{ .Values.aggregator.livenessProbe.successThreshold }}
|
|
failureThreshold: {{ .Values.aggregator.livenessProbe.failureThreshold }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.customReadinessProbe }}
|
|
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.customReadinessProbe "context" $) | nindent 12 }}
|
|
{{- else if .Values.aggregator.readinessProbe.enabled }}
|
|
readinessProbe:
|
|
httpGet:
|
|
path: {{ .Values.aggregator.readinessProbe.httpGet.path }}
|
|
port: {{ .Values.aggregator.readinessProbe.httpGet.port }}
|
|
initialDelaySeconds: {{ .Values.aggregator.readinessProbe.initialDelaySeconds }}
|
|
periodSeconds: {{ .Values.aggregator.readinessProbe.periodSeconds }}
|
|
timeoutSeconds: {{ .Values.aggregator.readinessProbe.timeoutSeconds }}
|
|
successThreshold: {{ .Values.aggregator.readinessProbe.successThreshold }}
|
|
failureThreshold: {{ .Values.aggregator.readinessProbe.failureThreshold }}
|
|
{{- end }}
|
|
{{- end }}
|
|
volumeMounts:
|
|
- name: fluentd-config
|
|
mountPath: /opt/bitnami/fluentd/conf
|
|
{{- if .Values.aggregator.persistence.enabled }}
|
|
- name: {{ printf "%s-buffer" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
|
|
mountPath: /opt/bitnami/fluentd/logs/buffers
|
|
{{- else }}
|
|
- name: buffer
|
|
mountPath: /opt/bitnami/fluentd/logs/buffers
|
|
{{- end }}
|
|
{{- if .Values.aggregator.extraGems }}
|
|
- name: gems
|
|
mountPath: /opt/bitnami/fluentd/gems/
|
|
- name: specifications
|
|
mountPath: /opt/bitnami/fluentd/specifications/
|
|
{{- end }}
|
|
{{- if .Values.tls.enabled }}
|
|
- name: fluentd-aggregator-certificates
|
|
mountPath: /opt/bitnami/fluentd/certs/in_forward
|
|
readOnly: true
|
|
{{- end }}
|
|
{{- if .Values.aggregator.initScripts }}
|
|
- name: custom-init-scripts
|
|
mountPath: /docker-entrypoint-initdb.d/init-scripts
|
|
{{- end }}
|
|
{{- if .Values.aggregator.initScriptsCM }}
|
|
- name: custom-init-scripts-cm
|
|
mountPath: /docker-entrypoint-initdb.d/init-scripts-cm
|
|
{{- end }}
|
|
{{- if .Values.aggregator.initScriptsSecret }}
|
|
- name: custom-init-scripts-secret
|
|
mountPath: /docker-entrypoint-initdb.d/init-scripts-secret
|
|
{{- end }}
|
|
{{- if .Values.aggregator.extraVolumeMounts }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.aggregator.extraVolumeMounts "context" $ ) | nindent 12 }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.sidecars }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.aggregator.sidecars "context" $ ) | nindent 8 }}
|
|
{{- end }}
|
|
volumes:
|
|
{{- if .Values.tls.enabled }}
|
|
- name: fluentd-aggregator-certificates
|
|
secret:
|
|
secretName: {{ include "fluentd.aggregator.tlsSecretName" . }}
|
|
defaultMode: 256
|
|
{{- end }}
|
|
- name: fluentd-config
|
|
configMap:
|
|
name: {{ template "fluentd.aggregator.configMap" . }}
|
|
{{- if not .Values.aggregator.persistence.enabled }}
|
|
- name: buffer
|
|
emptyDir: {}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.extraGems }}
|
|
- name: gems
|
|
emptyDir: {}
|
|
- name: specifications
|
|
emptyDir: {}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.initScripts }}
|
|
- name: custom-init-scripts
|
|
configMap:
|
|
name: {{ template "fluentd.aggregator.initScripts" . }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.initScriptsCM }}
|
|
- name: custom-init-scripts-cm
|
|
configMap:
|
|
name: {{ template "fluentd.aggregator.initScriptsCM" . }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.initScriptsSecret }}
|
|
- name: custom-init-scripts-secret
|
|
secret:
|
|
secretName: {{ template "fluentd.aggregator.initScriptsSecret" . }}
|
|
defaultMode: 0755
|
|
{{- end }}
|
|
{{- if .Values.aggregator.extraVolumes }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.aggregator.extraVolumes "context" $ ) | nindent 8 }}
|
|
{{- end }}
|
|
|
|
{{- if or .Values.aggregator.persistence.enabled .Values.aggregator.extraVolumeClaimTemplates }}
|
|
volumeClaimTemplates:
|
|
{{- if or .Values.aggregator.persistence.enabled }}
|
|
- metadata:
|
|
name: {{ printf "%s-buffer" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
|
|
{{- if .Values.aggregator.persistence.annotations }}
|
|
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.aggregator.persistence.annotations "context" $) | nindent 10 }}
|
|
{{- end }}
|
|
spec:
|
|
accessModes:
|
|
{{- range .Values.aggregator.persistence.accessModes }}
|
|
- {{ . | quote }}
|
|
{{- end }}
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.aggregator.persistence.size }}
|
|
{{- if .Values.aggregator.persistence.selector }}
|
|
selector: {{- include "common.tplvalues.render" ( dict "value" .Values.aggregator.persistence.selector "context" $) | nindent 10 }}
|
|
{{- end }}
|
|
{{- include "common.storage.class" (dict "persistence" .Values.aggregator.persistence "global" .Values.global) | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.aggregator.extraVolumeClaimTemplates }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.aggregator.extraVolumeClaimTemplates "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end -}}
|