From f2de7b4dcc4bb948a39e6bf768f0c6ecd7de4858 Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Fri, 13 Mar 2015 15:17:01 -0700 Subject: [PATCH] Add --can-ip-forward to master instance Another piece missing in https://github.com/GoogleCloudPlatform/kubernetes/pull/5390. The master should have --can-ip-forward if you're routing to it. --- cluster/gce/util.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/cluster/gce/util.sh b/cluster/gce/util.sh index 58f23831070..58864ba9aca 100755 --- a/cluster/gce/util.sh +++ b/cluster/gce/util.sh @@ -537,6 +537,7 @@ function kube-up { --tags "${MASTER_TAG}" \ --network "${NETWORK}" \ --scopes "storage-ro" "compute-rw" \ + --can-ip-forward \ --metadata-from-file \ "startup-script=${KUBE_ROOT}/cluster/gce/configure-vm.sh" \ "kube-env=${KUBE_TEMP}/master-kube-env.yaml" \