From 7269c416ca10f2201cf70ae55fc1edd138737db4 Mon Sep 17 00:00:00 2001 From: WanLinghao Date: Mon, 17 Dec 2018 13:07:12 +0800 Subject: [PATCH] Add description about local http proxy setting's effect on liveness probe (#11567) * Add description about local http proxy setting's effect on liveness probe * Update configure-liveness-readiness-probes.md --- .../configure-liveness-readiness-probes.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/en/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md b/content/en/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md index d3e09d1208..6750af2063 100644 --- a/content/en/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md +++ b/content/en/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md @@ -173,6 +173,12 @@ the Container has been restarted: kubectl describe pod liveness-http ``` +In releases prior to v1.13 (including v1.13), if the environment variable +`http_proxy` (or `HTTP_PROXY`) is set on the node where a pod is running, +the HTTP liveness probe uses that proxy. +In releases after v1.13, local HTTP proxy environment variable settings do not +affect the HTTP liveness probe. + ## Define a TCP liveness probe A third type of liveness probe uses a TCP Socket. With this configuration, the