Commit 5def8f67 authored by Jeff Lowdermilk's avatar Jeff Lowdermilk

Fix feature_gate plumbing in gci configure-helper.sh

parent f3329b7b
...@@ -504,7 +504,7 @@ function start-kubelet { ...@@ -504,7 +504,7 @@ function start-kubelet {
flags+=" --configure-cbr0=${ALLOCATE_NODE_CIDRS}" flags+=" --configure-cbr0=${ALLOCATE_NODE_CIDRS}"
fi fi
if [[ -n "${FEATURE_GATES:-}" ]]; then if [[ -n "${FEATURE_GATES:-}" ]]; then
flags+=" --feature-gates=${feature_gates}" flags+=" --feature-gates=${FEATURE_GATES}"
fi fi
echo "KUBELET_OPTS=\"${flags}\"" > /etc/default/kubelet echo "KUBELET_OPTS=\"${flags}\"" > /etc/default/kubelet
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment