Skip to content

Commit

Permalink
Merge pull request kubernetes#524 from bansalji02/master
Browse files Browse the repository at this point in the history
issue kubernetes#506--->fixed the redis issue
  • Loading branch information
k8s-ci-robot authored May 20, 2024
2 parents 171b8cb + deb8df6 commit 574ea58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion guestbook-go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
FROM golang:1.10.0
RUN go get github.com/codegangsta/negroni \
github.com/gorilla/mux \
github.com/xyproto/simpleredis
github.com/xyproto/simpleredis/v2
WORKDIR /app
ADD ./main.go .
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
Expand Down
2 changes: 1 addition & 1 deletion guestbook-go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

"github.com/codegangsta/negroni"
"github.com/gorilla/mux"
"github.com/xyproto/simpleredis"
"github.com/xyproto/simpleredis/v2"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion guestbook-go/redis-master-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
spec:
containers:
- name: redis-master
image: registry.k8s.io/redis:e2e
image: redis
ports:
- name: redis-server
containerPort: 6379

0 comments on commit 574ea58

Please sign in to comment.