diff --git a/integration/coredns_test.go b/integration/coredns_test.go index 05e20b0c7..1d795ab26 100644 --- a/integration/coredns_test.go +++ b/integration/coredns_test.go @@ -18,6 +18,7 @@ func (s *CoreDNSSuite) SetUpSuite(c *check.C) { "coredns/coredns:1.4.0", "coredns/coredns:1.5.2", "coredns/coredns:1.6.3", + "coredns/coredns:1.7.0", "giantswarm/tiny-tools:3.9", } s.startk3s(c, requiredImages) @@ -88,6 +89,10 @@ func (s *CoreDNSSuite) TestCoreDNSVersion(c *check.C) { desc: "CoreDNS 1.6.3", version: "1.6.3", }, + { + desc: "CoreDNS 1.7.0", + version: "1.7.0", + }, } s.createResources(c, "testdata/coredns/coredns.yaml") diff --git a/integration/integration_test.go b/integration/integration_test.go index 5aaecf7d3..f2437eaa1 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -69,6 +69,7 @@ func Test(t *testing.T) { images = append(images, image{"coredns/coredns:1.4.0", true}) images = append(images, image{"coredns/coredns:1.5.2", true}) images = append(images, image{"coredns/coredns:1.6.3", true}) + images = append(images, image{"coredns/coredns:1.7.0", true}) images = append(images, image{"giantswarm/tiny-tools:3.9", true}) images = append(images, image{"gcr.io/google_containers/k8s-dns-kube-dns-amd64:1.14.7", true}) images = append(images, image{"gcr.io/google_containers/k8s-dns-dnsmasq-nanny-amd64:1.14.7", true}) diff --git a/pkg/dns/dns.go b/pkg/dns/dns.go index e1f161c29..88e0807b5 100644 --- a/pkg/dns/dns.go +++ b/pkg/dns/dns.go @@ -37,6 +37,7 @@ var ( "1.4", "1.5", "1.6", + "1.7", } )