From aceddfa7fcb06fa080761fa26dc4cda0feddf2ec Mon Sep 17 00:00:00 2001 From: Vishnu kannan Date: Fri, 21 Oct 2016 17:43:16 -0700 Subject: [PATCH] Enable containerized storage mounter on GCI Signed-off-by: Vishnu kannan --- cluster/gce/gci/configure-helper.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cluster/gce/gci/configure-helper.sh b/cluster/gce/gci/configure-helper.sh index 392c1a7a710..abd58092aa0 100644 --- a/cluster/gce/gci/configure-helper.sh +++ b/cluster/gce/gci/configure-helper.sh @@ -475,7 +475,10 @@ function start-kubelet { flags+=" --config=/etc/kubernetes/manifests" flags+=" --kubelet-cgroups=/kubelet" flags+=" --system-cgroups=/system" - + flags+=" --experimental-mounter-path=${KUBE_HOME}/bin/mounter" + # Note: This patch must match the rootfs path in mounter/mounter + flags+=" --experimental-mounter-rootfs-path=/media/root" + if [[ -n "${KUBELET_PORT:-}" ]]; then flags+=" --port=${KUBELET_PORT}" fi