File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
FROM golang:1.10.0
16
16
RUN go get github.com/codegangsta/negroni \
17
17
github.com/gorilla/mux \
18
- github.com/xyproto/simpleredis
18
+ github.com/xyproto/simpleredis/v2
19
19
WORKDIR /app
20
20
ADD ./main.go .
21
21
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
24
24
25
25
"github.com/codegangsta/negroni"
26
26
"github.com/gorilla/mux"
27
- "github.com/xyproto/simpleredis"
27
+ "github.com/xyproto/simpleredis/v2 "
28
28
)
29
29
30
30
var (
Original file line number Diff line number Diff line change 18
18
spec :
19
19
containers :
20
20
- name : redis-master
21
- image : registry.k8s.io/ redis:e2e
21
+ image : redis
22
22
ports :
23
23
- name : redis-server
24
24
containerPort : 6379
Original file line number Diff line number Diff line change 18
18
spec :
19
19
containers :
20
20
- name : redis-replica
21
- image : registry. k8s.io/redis-slave:v2
21
+ image : k8s.gcr .io/redis-slave:v2
22
22
ports :
23
23
- name : redis-server
24
24
containerPort : 6379
You can’t perform that action at this time.
0 commit comments