rancher-charts/charts/rancher-logging/104.1.0+up4.8.0/templates/logging/clusterflows.yaml

15 lines
416 B
YAML
Raw Normal View History

{{ if .Values.logging.enabled -}}
{{- range $clusterflow := .Values.logging.clusterFlows }}
---
apiVersion: logging.banzaicloud.io/v1beta1
kind: ClusterFlow
metadata:
name: {{ $clusterflow.name }}
namespace: {{ $.Values.logging.controlNamespace | default $.Release.Namespace }}
labels:
{{ include "logging-operator.labels" $ | indent 4 }}
spec:
{{ toYaml $clusterflow.spec | indent 2 }}
{{- end -}}
{{- end }}