mirror of https://github.com/k3s-io/k3s
Remove the cluster DNS verification check from the test
Alternate DNS implementations may be conformant without implementing DNS as a pod.pull/6/head
parent
fe4d83dc81
commit
ea4a7e24ad
|
@ -260,8 +260,6 @@ var _ = framework.KubeDescribe("DNS", func() {
|
||||||
f := framework.NewDefaultFramework("dns")
|
f := framework.NewDefaultFramework("dns")
|
||||||
|
|
||||||
It("should provide DNS for the cluster [Conformance]", func() {
|
It("should provide DNS for the cluster [Conformance]", func() {
|
||||||
verifyDNSPodIsRunning(f)
|
|
||||||
|
|
||||||
// All the names we need to be able to resolve.
|
// All the names we need to be able to resolve.
|
||||||
// TODO: Spin up a separate test service and test that dns works for that service.
|
// TODO: Spin up a separate test service and test that dns works for that service.
|
||||||
namesToResolve := []string{
|
namesToResolve := []string{
|
||||||
|
@ -288,8 +286,6 @@ var _ = framework.KubeDescribe("DNS", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("should provide DNS for services [Conformance]", func() {
|
It("should provide DNS for services [Conformance]", func() {
|
||||||
verifyDNSPodIsRunning(f)
|
|
||||||
|
|
||||||
// Create a test headless service.
|
// Create a test headless service.
|
||||||
By("Creating a test headless service")
|
By("Creating a test headless service")
|
||||||
testServiceSelector := map[string]string{
|
testServiceSelector := map[string]string{
|
||||||
|
@ -338,8 +334,6 @@ var _ = framework.KubeDescribe("DNS", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("should provide DNS for pods for Hostname and Subdomain Annotation", func() {
|
It("should provide DNS for pods for Hostname and Subdomain Annotation", func() {
|
||||||
verifyDNSPodIsRunning(f)
|
|
||||||
|
|
||||||
// Create a test headless service.
|
// Create a test headless service.
|
||||||
By("Creating a test headless service")
|
By("Creating a test headless service")
|
||||||
testServiceSelector := map[string]string{
|
testServiceSelector := map[string]string{
|
||||||
|
|
Loading…
Reference in New Issue