github.com/verrazzano/verrazzano@v1.7.0/platform-operator/thirdparty/charts/weblogic-operator/templates/_logstash-cm.tpl (about) 1 # Copyright (c) 2022, Oracle and/or its affiliates. 2 # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. 3 4 {{- define "operator.logStashConfigMap" }} 5 --- 6 apiVersion: "v1" 7 data: 8 logstash.conf: | 9 {{ .Files.Get "logstash.conf" | indent 4 }} 10 logstash.yml: | 11 {{ .Files.Get "logstash.yml" | indent 4 }} 12 kind: "ConfigMap" 13 metadata: 14 labels: 15 weblogic.operatorName: {{ .Release.Namespace | quote }} 16 name: "weblogic-operator-logstash-cm" 17 namespace: {{ .Release.Namespace | quote }} 18 {{- end }}