mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 23:37:01 +00:00
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
This commit is contained in:
parent
aada051b20
commit
ff5a2a755f
@ -25,7 +25,7 @@
|
||||
"containers":[
|
||||
{
|
||||
"name":"redis-master",
|
||||
"image":"redis",
|
||||
"image":"redis:2.8.23",
|
||||
"ports":[
|
||||
{
|
||||
"name":"redis-server",
|
||||
|
Loading…
Reference in New Issue
Block a user