From bdab091476370e223421a6bf3c35d6a713528f72 Mon Sep 17 00:00:00 2001 From: Marcin Owsiany Date: Fri, 22 Dec 2017 11:04:23 +0100 Subject: [PATCH] Disable the DNS autoscaler test in large clusters. This is to prevent colateral damage while details are being investigated. --- test/e2e/autoscaling/dns_autoscaling.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/autoscaling/dns_autoscaling.go b/test/e2e/autoscaling/dns_autoscaling.go index 9c57a3da8be..77316826425 100644 --- a/test/e2e/autoscaling/dns_autoscaling.go +++ b/test/e2e/autoscaling/dns_autoscaling.go @@ -157,7 +157,8 @@ var _ = SIGDescribe("DNS horizontal autoscaling", func() { Expect(waitForDNSReplicasSatisfied(c, getExpectReplicasLinear, DNSdefaultTimeout)).NotTo(HaveOccurred()) }) - It("kube-dns-autoscaler should scale kube-dns pods in both nonfaulty and faulty scenarios", func() { + // TODO: Get rid of [DisabledForLargeClusters] tag when issue #55779 is fixed. + It("[DisabledForLargeClusters] kube-dns-autoscaler should scale kube-dns pods in both nonfaulty and faulty scenarios", func() { By("Replace the dns autoscaling parameters with testing parameters") err := updateDNSScalingConfigMap(c, packDNSScalingConfigMap(packLinearParams(&DNSParams_1)))