From a64d8d4f7bb299c675f83fa101ba7491d03ac9fc Mon Sep 17 00:00:00 2001 From: Avesh Agarwal Date: Fri, 28 Aug 2015 22:03:33 -0400 Subject: [PATCH] Updates scratch.md to send httpGet livenessprobe to 127.0.0.1 for controller-manager and scheduler as they both listen on 127.0.0.1 by default. This fixes #12740. --- docs/getting-started-guides/scratch.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/getting-started-guides/scratch.md b/docs/getting-started-guides/scratch.md index 75fb0ebe129..0ac88880870 100644 --- a/docs/getting-started-guides/scratch.md +++ b/docs/getting-started-guides/scratch.md @@ -710,6 +710,7 @@ Complete this template for the scheduler pod: ], "livenessProbe": { "httpGet": { + "host" : "127.0.0.1", "path": "/healthz", "port": 10251 }, @@ -766,6 +767,7 @@ Template for controller manager pod: ], "livenessProbe": { "httpGet": { + "host": "127.0.0.1", "path": "/healthz", "port": 10252 },