From 69e6de576069ced9266719c8d9ec9e56f67449aa Mon Sep 17 00:00:00 2001 From: Xiaoyi Date: Thu, 28 Dec 2017 11:54:02 +0800 Subject: [PATCH] Remove default value for namespace This allows namespace to be solely specified in the config file. #81 --- k8s/object.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/object.bzl b/k8s/object.bzl index 023c9814..2cc890ad 100644 --- a/k8s/object.bzl +++ b/k8s/object.bzl @@ -166,7 +166,7 @@ def _common_impl(ctx): return struct(runfiles = ctx.runfiles(files = files)) _common_attrs = { - "namespace": attr.string(default = "default"), + "namespace": attr.string(), # We allow cluster to be omitted, and we just # don't expose the extra actions. "cluster": attr.string(),