added missing EOF (#12265)

This commit is contained in:
Naoki Oketani
2019-01-22 06:14:25 +09:00
committed by Kubernetes Prow Robot
parent 076efdf364
commit a0ba90d196
@@ -276,7 +276,7 @@ Fluent-plugin-forest and fluent-plugin-rewrite-tag-filter are plugins for fluent
1. create a config file for fluentd 1. create a config file for fluentd
```none ```none
$ cat <<EOF > /etc/fluentd/config $ cat <<'EOF' > /etc/fluentd/config
# fluentd conf runs in the same host with kube-apiserver # fluentd conf runs in the same host with kube-apiserver
<source> <source>
@type tail @type tail
@@ -321,6 +321,7 @@ Fluent-plugin-forest and fluent-plugin-rewrite-tag-filter are plugins for fluent
include_time_key true include_time_key true
</template> </template>
</match> </match>
EOF
``` ```
1. start fluentd 1. start fluentd
@@ -373,6 +374,7 @@ different users into different files.
path=>"/var/log/kube-audit-%{[event][user][username]}/audit" path=>"/var/log/kube-audit-%{[event][user][username]}/audit"
} }
} }
EOF
``` ```
1. start logstash 1. start logstash