mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 19:01:49 +00:00
Use host IP instead of 127.0.0.1 for kube-apiserver healthcheck.
This commit is contained in:
parent
6352f01e66
commit
8416c5cc51
@ -539,7 +539,11 @@ export KONNECTIVITY_SERVICE_PROXY_PROTOCOL_MODE="${KUBE_KONNECTIVITY_SERVICE_PRO
|
||||
# Optional: Enable Windows CSI-Proxy
|
||||
export ENABLE_CSI_PROXY="${ENABLE_CSI_PROXY:-true}"
|
||||
|
||||
# ETCD_LISTEN_ON_HOST_IP decides whether etcd servers should also listen on host IP,
|
||||
# KUBE_APISERVER_HEALTHCHECK_ON_HOST_IP decides whether
|
||||
# kube-apiserver is healthchecked on host IP instead of 127.0.0.1.
|
||||
export KUBE_APISERVER_HEALTHCHECK_ON_HOST_IP="${KUBE_APISERVER_HEALTHCHECK_ON_HOST_IP:-false}"
|
||||
|
||||
# ETCD_LISTEN_ON_HOST_IP decides whether etcd servers should also listen on host IP,
|
||||
# in addition to listening to 127.0.0.1, and whether kube-apiserver should connect to etcd servers
|
||||
# through host IP.
|
||||
export ETCD_LISTEN_ON_HOST_IP="${ETCD_LISTEN_ON_HOST_IP:-false}"
|
||||
|
@ -575,7 +575,11 @@ export GCE_UPLOAD_KUBCONFIG_TO_MASTER_METADATA=true
|
||||
# Optoinal: Enable Windows CSI-Proxy
|
||||
export ENABLE_CSI_PROXY="${ENABLE_CSI_PROXY:-true}"
|
||||
|
||||
# ETCD_LISTEN_ON_HOST_IP decides whether etcd servers should also listen on host IP,
|
||||
# KUBE_APISERVER_HEALTHCHECK_ON_HOST_IP decides whether
|
||||
# kube-apiserver is healthchecked on host IP instead of 127.0.0.1.
|
||||
export KUBE_APISERVER_HEALTHCHECK_ON_HOST_IP="${KUBE_APISERVER_HEALTHCHECK_ON_HOST_IP:-false}"
|
||||
|
||||
# ETCD_LISTEN_ON_HOST_IP decides whether etcd servers should also listen on host IP,
|
||||
# in addition to listening to 127.0.0.1, and whether kube-apiserver should connect to etcd servers
|
||||
# through host IP.
|
||||
export ETCD_LISTEN_ON_HOST_IP="${ETCD_LISTEN_ON_HOST_IP:-false}"
|
||||
|
@ -374,6 +374,11 @@ function start-kube-apiserver {
|
||||
# params is passed by reference, so no "$"
|
||||
setup-etcd-encryption "${src_file}" params
|
||||
|
||||
local healthcheck_ip="127.0.0.1"
|
||||
if [[ ${KUBE_APISERVER_HEALTHCHECK_ON_HOST_IP:-} == "true" ]]; then
|
||||
healthcheck_ip=$(hostname -i)
|
||||
fi
|
||||
|
||||
params="$(convert-manifest-params "${params}")"
|
||||
# Evaluate variables.
|
||||
local -r kube_apiserver_docker_tag="${KUBE_API_SERVER_DOCKER_TAG:-$(cat /home/kubernetes/kube-docker-files/kube-apiserver.docker_tag)}"
|
||||
@ -404,6 +409,7 @@ function start-kube-apiserver {
|
||||
sed -i -e "s@{{webhook_exec_auth_plugin_volume}}@${webhook_exec_auth_plugin_volume}@g" "${src_file}"
|
||||
sed -i -e "s@{{konnectivity_socket_mount}}@${default_konnectivity_socket_mnt}@g" "${src_file}"
|
||||
sed -i -e "s@{{konnectivity_socket_volume}}@${default_konnectivity_socket_vol}@g" "${src_file}"
|
||||
sed -i -e "s@{{healthcheck_ip}}@${healthcheck_ip}@g" "${src_file}"
|
||||
|
||||
cp "${src_file}" "${ETC_MANIFESTS:-/etc/kubernetes/manifests}"
|
||||
}
|
||||
|
@ -37,7 +37,7 @@
|
||||
"livenessProbe": {
|
||||
"httpGet": {
|
||||
"scheme": "HTTPS",
|
||||
"host": "127.0.0.1",
|
||||
"host": "{{healthcheck_ip}}",
|
||||
"port": {{secure_port}},
|
||||
"path": "/livez?exclude=etcd&exclude=kms-provider-0&exclude=kms-provider-1"
|
||||
},
|
||||
@ -47,7 +47,7 @@
|
||||
"readinessProbe": {
|
||||
"httpGet": {
|
||||
"scheme": "HTTPS",
|
||||
"host": "127.0.0.1",
|
||||
"host": "{{healthcheck_ip}}",
|
||||
"port": {{secure_port}},
|
||||
"path": "/readyz"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user