From 58077fa0ecc509f6e22cf7d1fe7fca6047e8df7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Wed, 31 Jan 2018 21:11:10 -0800 Subject: [PATCH] Use new envs in Makefile FILTER_DEFAULT is a legacy env, FILTERS_DEFAULT should be used --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f0416f6ba..b5162b3f7 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ run: $(NAME) LABELS_COLOR_UNIQUE="@receiver instance cluster" \ LABELS_COLOR_STATIC="job" \ DEBUG="$(GIN_DEBUG)" \ - FILTER_DEFAULT="@state=active" \ + FILTERS_DEFAULT="@state=active" \ PORT=$(PORT) \ ./$(NAME) @@ -98,6 +98,7 @@ run-docker: docker-image -e LABELS_COLOR_UNIQUE="instance cluster" \ -e LABELS_COLOR_STATIC="job" \ -e DEBUG="$(GIN_DEBUG)" \ + -e FILTERS_DEFAULT="@state=active" \ -e PORT=$(PORT) \ -p $(PORT):$(PORT) \ $(NAME):$(VERSION)