diff --git a/cluster/gce/gci/configure-helper.sh b/cluster/gce/gci/configure-helper.sh index c007c0434a8..37f3f6044f4 100644 --- a/cluster/gce/gci/configure-helper.sh +++ b/cluster/gce/gci/configure-helper.sh @@ -1583,6 +1583,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=""