From 1d08586f7331a36ca809dc96c27236d712e3d737 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Wojtun=CC=81?= Date: Fri, 21 Oct 2016 09:53:59 +0200 Subject: [PATCH] fixed problem with non masquerade cidr in kube-up gce/gci --- cluster/gce/gci/configure-helper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/gce/gci/configure-helper.sh b/cluster/gce/gci/configure-helper.sh index 32de3d840a4ef..05e0a3d0df77b 100644 --- a/cluster/gce/gci/configure-helper.sh +++ b/cluster/gce/gci/configure-helper.sh @@ -514,7 +514,7 @@ function start-kubelet { fi flags+=" --reconcile-cidr=${reconcile_cidr}" if [[ -n "${NON_MASQUERADE_CIDR:-}" ]]; then - flag+=" --non-masquerade-cidr=${NON_MASQUERADE_CIDR}" + flags+=" --non-masquerade-cidr=${NON_MASQUERADE_CIDR}" fi if [[ "${ENABLE_MANIFEST_URL:-}" == "true" ]]; then flags+=" --manifest-url=${MANIFEST_URL}"