diff --git a/cluster/gce/gci/configure-helper.sh b/cluster/gce/gci/configure-helper.sh index 9bb96e1c438..9f7b1b3ca86 100644 --- a/cluster/gce/gci/configure-helper.sh +++ b/cluster/gce/gci/configure-helper.sh @@ -1592,6 +1592,9 @@ function start-kube-apiserver { if [[ "${ENABLE_APISERVER_LOGS_HANDLER:-}" == "false" ]]; then params+=" --enable-logs-handler=false" fi + if [[ -n "${APISERVER_KUBELET_CA:-}" ]]; then + params+=" --kubelet-certificate-authority=${APISERVER_KUBELET_CA}" + fi local admission_controller_config_mount="" local admission_controller_config_volume=""