From 5a2f2261474cb0c3328129e5109392afbccbf27d Mon Sep 17 00:00:00 2001 From: Zihong Zheng Date: Wed, 19 Jul 2017 23:21:28 -0700 Subject: [PATCH] [e2e] Also verify content returned by kube-proxy healthz server --- test/e2e/networking.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/networking.go b/test/e2e/networking.go index 9067e1f46e1..6a6b72710ba 100644 --- a/test/e2e/networking.go +++ b/test/e2e/networking.go @@ -85,6 +85,8 @@ var _ = framework.KubeDescribe("Networking", func() { By("checking kube-proxy URLs") config.GetSelfURL(ports.ProxyHealthzPort, "/healthz", "200 OK") + // Verify /healthz returns the proper content. + config.GetSelfURL(ports.ProxyHealthzPort, "/healthz", "lastUpdated") config.GetSelfURL(ports.ProxyStatusPort, "/proxyMode", "iptables") // the default })