From ff5a2a755f8684a764eab8d92260ff77cc1b796d Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Sun, 15 May 2016 18:41:04 -0500 Subject: [PATCH] examples: guestbook-go: fix the redis-master version The guestbook-go example is broken because the latest tag of redis has moved to redis 3.0 which speaks a new protocol. This means that the slaves, which have fixed 2.0 versions, will error out on the protocol: ``` [7] 15 May 23:37:44.403 # Can't handle RDB format version 7 [7] 15 May 23:37:44.403 # Failed trying to load the MASTER synchronization DB from disk [7] 15 May 23:37:45.333 * Connecting to MASTER redis-master:6379 [7] 15 May 23:37:45.427 * MASTER <-> SLAVE sync started ``` In this case the app simply never persists data. cc @luebken @Gurpartap --- examples/guestbook-go/redis-master-controller.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/guestbook-go/redis-master-controller.json b/examples/guestbook-go/redis-master-controller.json index 51f835a2e28..4ffe53a721f 100644 --- a/examples/guestbook-go/redis-master-controller.json +++ b/examples/guestbook-go/redis-master-controller.json @@ -25,7 +25,7 @@ "containers":[ { "name":"redis-master", - "image":"redis", + "image":"redis:2.8.23", "ports":[ { "name":"redis-server",