We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 171b8cb + deb8df6 commit 574ea58Copy full SHA for 574ea58
guestbook-go/Dockerfile
@@ -15,7 +15,7 @@
15
FROM golang:1.10.0
16
RUN go get github.com/codegangsta/negroni \
17
github.com/gorilla/mux \
18
- github.com/xyproto/simpleredis
+ github.com/xyproto/simpleredis/v2
19
WORKDIR /app
20
ADD ./main.go .
21
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
guestbook-go/main.go
@@ -24,7 +24,7 @@ import (
24
25
"github.com/codegangsta/negroni"
26
"github.com/gorilla/mux"
27
- "github.com/xyproto/simpleredis"
+ "github.com/xyproto/simpleredis/v2"
28
)
29
30
var (
guestbook-go/redis-master-controller.yaml
@@ -18,7 +18,7 @@ spec:
spec:
containers:
- name: redis-master
- image: registry.k8s.io/redis:e2e
+ image: redis
22
ports:
23
- name: redis-server
containerPort: 6379
0 commit comments