104 lines
2.6 KiB
YAML
104 lines
2.6 KiB
YAML
{{- define "logging-values" }}
|
|
|
|
{{- with index .Values "logging" "eck-operator" }}
|
|
eck-operator:
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.logging.elastic_password }}
|
|
elastic_password: {{ .Values.logging.elastic_password }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.logging.version }}
|
|
version: {{ .Values.logging.version }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.logging.fullnameOverride }}
|
|
fullnameOverride: {{ .Values.logging.fullnameOverride }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.logging.es }}
|
|
es:
|
|
{{- if .Values.logging.es.nodeSets }}
|
|
nodeSets:
|
|
{{- with .Values.logging.es.nodeSets }}
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
prometheus: {{ .Values.metrics.enabled }}
|
|
|
|
{{- if .Values.logging.es.s3Snapshot }}
|
|
s3Snapshot:
|
|
{{- with .Values.logging.es.s3Snapshot }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.logging.kibana }}
|
|
kibana:
|
|
{{- with .Values.logging.kibana }}
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.logging.fluentd }}
|
|
fluentd:
|
|
enabled: {{ .Values.logging.fluentd.enabled }}
|
|
metrics:
|
|
enabled: {{ .Values.metrics.enabled }}
|
|
url: {{ .Values.logging.fluentd.url }}
|
|
{{- if .Values.logging.fluentd.output }}
|
|
output:
|
|
host: {{ .Values.logging.fluentd.output.host }}
|
|
{{- end }}
|
|
{{- if .Values.logging.fluentd.extraEnvVars }}
|
|
extraEnvVars:
|
|
{{- toYaml .Values.logging.fluentd.extraEnvVars | nindent 8 }}
|
|
{{- end }}
|
|
{{- if and .Values.logging.fluentd.istio .Values.istio.enabled }}
|
|
istio:
|
|
{{- with .Values.logging.fluentd.istio }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- if index .Values "logging" "fluent-bit" }}
|
|
fluent-bit:
|
|
enabled: {{ index .Values.logging "fluent-bit" "enabled" }}
|
|
serviceMonitor:
|
|
enabled: {{ .Values.metrics.enabled }}
|
|
{{- if index .Values.logging "fluent-bit" "config" }}
|
|
config:
|
|
{{- with index .Values.logging "fluent-bit" "config" }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
|
|
{{- define "logging-argo" }}
|
|
|
|
ignoreDifferences:
|
|
- group: admissionregistration.k8s.io
|
|
kind: ValidatingWebhookConfiguration
|
|
jsonPointers:
|
|
- /webhooks/0/clientConfig/caBundle
|
|
- /webhooks/1/clientConfig/caBundle
|
|
- /webhooks/2/clientConfig/caBundle
|
|
- /webhooks/3/clientConfig/caBundle
|
|
- /webhooks/4/clientConfig/caBundle
|
|
- /webhooks/5/clientConfig/caBundle
|
|
- /webhooks/6/clientConfig/caBundle
|
|
- /webhooks/7/clientConfig/caBundle
|
|
- group: apiextensions.k8s.io
|
|
kind: CustomResourceDefinition
|
|
jsonPointers:
|
|
- /status
|
|
{{- end }}
|
|
|
|
{{ include "kubezero-app.app" . }}
|