Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Redis slave image to new location. #327

Merged
merged 2 commits into from
Jul 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions guestbook-go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ The Redis master we created earlier is a single pod (REPLICAS = 1), while the Re
$ kubectl get rc
CONTROLLER CONTAINER(S) IMAGE(S) SELECTOR REPLICAS
redis-master redis-master redis app=redis,role=master 1
redis-slave redis-slave kubernetes/redis-slave:v2 app=redis,role=slave 2
redis-slave redis-slave k8s.gcr.io/redis-slave:v2 app=redis,role=slave 2
...
```

Expand Down Expand Up @@ -180,7 +180,7 @@ This is a simple Go `net/http` ([negroni](https://github.com/codegangsta/negroni
CONTROLLER CONTAINER(S) IMAGE(S) SELECTOR REPLICAS
guestbook guestbook k8s.gcr.io/guestbook:v3 app=guestbook 3
redis-master redis-master redis app=redis,role=master 1
redis-slave redis-slave kubernetes/redis-slave:v2 app=redis,role=slave 2
redis-slave redis-slave k8s.gcr.io/redis-slave:v2 app=redis,role=slave 2
...
```

Expand Down
2 changes: 1 addition & 1 deletion guestbook-go/redis-slave-controller.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"containers":[
{
"name":"redis-slave",
"image":"kubernetes/redis-slave:v2",
"image":"k8s.gcr.io/redis-slave:v2",
"ports":[
{
"name":"redis-server",
Expand Down