I have a kubernetes cluster running on coreos. I wish to run journal2gelf https://github.com/systemd/journal2gelf in a container in a pod I call logging. (I also have a fluentd container in this pod, which works great, I highly recommend it for streaming logs elsewhere). Is it possible to configure a pod to allow essentially this:
journalctl -o json -f | docker run <my journal2gelf image> -d -p $GRAYLOG_PORT
but within the containers:
key in a replication controller config? And in general can kubernetes allow piping to a container?