Update kubedns to 1.14.2. (#1526)

* Update kubedns to 1.14.2.

* Also change integration test to cover the naked "kubernetes" domain.
pull/1539/head
dlorenc 2017-05-26 10:15:38 -07:00 committed by GitHub
parent 37f6985499
commit 99be45d40c
2 changed files with 5 additions and 5 deletions

View File

@ -44,7 +44,7 @@ spec:
optional: true
containers:
- name: kubedns
image: gcr.io/google_containers/k8s-dns-kube-dns-amd64:1.14.1
image: gcr.io/google_containers/k8s-dns-kube-dns-amd64:1.14.2
resources:
# TODO: Set memory limits when we've profiled the container for large
# clusters, then set request = limit to keep this container in
@ -76,7 +76,7 @@ spec:
args:
- --domain=cluster.local.
- --dns-port=10053
- --config-dir=/kube-dns-config
- --config-map=kube-dns
- --v=2
env:
- name: PROMETHEUS_PORT
@ -95,7 +95,7 @@ spec:
- name: kube-dns-config
mountPath: /kube-dns-config
- name: dnsmasq
image: gcr.io/google_containers/k8s-dns-dnsmasq-nanny-amd64:1.14.1
image: gcr.io/google_containers/k8s-dns-dnsmasq-nanny-amd64:1.14.2
livenessProbe:
httpGet:
path: /healthcheck/dnsmasq
@ -131,7 +131,7 @@ spec:
- name: kube-dns-config
mountPath: /etc/k8s/dns/dnsmasq-nanny
- name: sidecar
image: gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.1
image: gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.2
livenessProbe:
httpGet:
path: /metrics

View File

@ -59,7 +59,7 @@ func testClusterDNS(t *testing.T) {
}
dnsByteArr, err := kubectlRunner.RunCommand([]string{"exec", podName,
"nslookup", "kubernetes.default"})
"nslookup", "kubernetes"})
dnsOutput := string(dnsByteArr)
if err != nil {
return &commonutil.RetriableError{Err: err}