Adjust test in salt file to use boolean value

This commit is contained in:
Satnam Singh
2014-10-20 11:01:13 -07:00
parent 893e897d9b
commit b7722a631d
6 changed files with 52 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
## Logging
**Experimental work in progress.**
### Logging with Fluentd and Elastiscsearch
To enable logging of the stdout and stderr output of every Docker container in
a Kubernetes cluster set the shell environment
variable ``FLUENTD_ELASTICSEARCH`` to ``true`` e.g. in bash:
```
export FLUENTD_ELASTICSEARCH=true
```
This will instantiate a [Fluentd](http://www.fluentd.org/) instance on each node which will
collect all the Dcoker container log files. The collected logs will
be targetted at an [Elasticsearch](http://www.elasticsearch.org/) instance assumed to be running on the
local node and accepting log information on port 9200. This can be accomplished
by writing a pod specification and service sepecificaiton to define an
Elasticsearch service (more informaiton to follow shortly in the contrib directory).