Files
kubernetes/cluster/addons/fluentd-elasticsearch/fluentd-es-image/Makefile
Alex Robinson 8855371763 Configure fluentd to collect additional log files, including master log files.
This also merges the output blocks together because there's no compelling
reason to have a separate output block for each input.
2015-07-01 20:07:47 +00:00

11 lines
198 B
Makefile

.PHONY: build push
IMAGE = fluentd-elasticsearch
TAG = 1.6
build:
docker build -t gcr.io/google_containers/$(IMAGE):$(TAG) .
push:
gcloud docker push gcr.io/google_containers/$(IMAGE):$(TAG)