472be9a374
This is the last PR for moving the YAML/JSON sample files. There still need some follow up PRs to: - rename the `codenew` shortcode to `code`. - move the examples_test.go to where it really belongs.
26 lines
432 B
YAML
26 lines
432 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: fluentd-config
|
|
data:
|
|
fluentd.conf: |
|
|
<source>
|
|
type tail
|
|
format none
|
|
path /var/log/1.log
|
|
pos_file /var/log/1.log.pos
|
|
tag count.format1
|
|
</source>
|
|
|
|
<source>
|
|
type tail
|
|
format none
|
|
path /var/log/2.log
|
|
pos_file /var/log/2.log.pos
|
|
tag count.format2
|
|
</source>
|
|
|
|
<match **>
|
|
type google_cloud
|
|
</match>
|