Skip to content

Commit 64f2c68

Browse files
committed
Add [LinuxOnly] to e2e verifying PQDN resolution
1 parent f5a1ceb commit 64f2c68

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/e2e/network/dns.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ var _ = SIGDescribe("DNS", func() {
6969
validateDNSResults(f, pod, append(wheezyFileNames, jessieFileNames...))
7070
})
7171

72-
ginkgo.It("should resolve DNS of partial qualified names for the cluster ", func() {
72+
// [LinuxOnly]: As Windows currently does not support resolving PQDNs.
73+
ginkgo.It("should resolve DNS of partial qualified names for the cluster [LinuxOnly]", func() {
7374
// All the names we need to be able to resolve.
7475
// TODO: Spin up a separate test service and test that dns works for that service.
7576
namesToResolve := []string{
@@ -171,7 +172,8 @@ var _ = SIGDescribe("DNS", func() {
171172
validateDNSResults(f, pod, append(wheezyFileNames, jessieFileNames...))
172173
})
173174

174-
ginkgo.It("should resolve DNS of partial qualified names for services ", func() {
175+
// [LinuxOnly]: As Windows currently does not support resolving PQDNs.
176+
ginkgo.It("should resolve DNS of partial qualified names for services [LinuxOnly]", func() {
175177
// Create a test headless service.
176178
ginkgo.By("Creating a test headless service")
177179
testServiceSelector := map[string]string{

0 commit comments

Comments
 (0)