From 347cec37b2b728de5b633437b558cb0f61a43199 Mon Sep 17 00:00:00 2001 From: Mikkel Oscar Lyderik Larsen Date: Fri, 14 Sep 2018 16:19:19 +0200 Subject: [PATCH] Fix Redis StatefulSet e2e test This fixes the Redis StatefulSet e2e test by adding the missing `publishNotReadyAddresses: true` field, which was accidentially left out in #63742. Without this fix, the redis e2e test will fail because the pod is unable to lookup the service: ``` 2018/09/14 13:57:10 lookup redis on 172.31.9.247:53: no such host ``` Signed-off-by: Mikkel Oscar Lyderik Larsen --- test/e2e/testing-manifests/statefulset/redis/service.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/testing-manifests/statefulset/redis/service.yaml b/test/e2e/testing-manifests/statefulset/redis/service.yaml index bfdc3465575..528ef6dad57 100644 --- a/test/e2e/testing-manifests/statefulset/redis/service.yaml +++ b/test/e2e/testing-manifests/statefulset/redis/service.yaml @@ -13,3 +13,4 @@ spec: clusterIP: None selector: app: redis + publishNotReadyAddresses: true