Unverified Commit 7cc193e9 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #61251 from zjj2wry/kubectl-e2e-test

Automatic merge from submit-queue (batch tested with PRs 60632, 60806, 59471, 61251, 61013). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. remove DNS service from kubectl comformance test **What this PR does / why we need it**: **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes #https://github.com/kubernetes/kubernetes/issues/61177 **Special notes for your reviewer**: /assign @pwittrock /assign @soltysh **Release note**: ```release-note NONE ```
parents 60836d0d 69b079af
......@@ -806,7 +806,7 @@ metadata:
// Can't check exact strings due to terminal control commands (colors)
requiredItems := []string{"Kubernetes master", "is running at"}
if framework.ProviderIs("gce", "gke") {
requiredItems = append(requiredItems, "KubeDNS", "Heapster")
requiredItems = append(requiredItems, "Heapster")
}
for _, item := range requiredItems {
if !strings.Contains(output, item) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment