diff --git a/cluster/gce/gci/configure-helper.sh b/cluster/gce/gci/configure-helper.sh index e357a7eb3f5..35950fc20a3 100644 --- a/cluster/gce/gci/configure-helper.sh +++ b/cluster/gce/gci/configure-helper.sh @@ -509,6 +509,9 @@ function start-kube-controller-manager { if [[ -n "${CLUSTER_IP_RANGE:-}" ]]; then params+=" --cluster-cidr=${CLUSTER_IP_RANGE}" fi + if [[ -n "${SERVICE_CLUSTER_IP_RANGE:-}" ]]; then + params+=" --service-cluster-ip-range=${SERVICE_CLUSTER_IP_RANGE}" + fi if [[ "${ALLOCATE_NODE_CIDRS:-}" == "true" ]]; then params+=" --allocate-node-cidrs=${ALLOCATE_NODE_CIDRS}" fi