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 <mikkel.larsen@zalando.de>
This commit is contained in:
Mikkel Oscar Lyderik Larsen
2018-09-14 16:19:19 +02:00
parent c04fe8c27c
commit 347cec37b2

View File

@@ -13,3 +13,4 @@ spec:
clusterIP: None
selector:
app: redis
publishNotReadyAddresses: true