Skip to content

Commit

Permalink
json files updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sub-mod committed Feb 19, 2015
1 parent a749efa commit 5aedf10
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion examples/guestbook/guestbook_ns/frontend-controller.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"image": "kubernetes/example-guestbook-php-redis",
"ports": [
{
"containerPort": 80
"containerPort": 80,
"protocol": "TCP"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion examples/guestbook/guestbook_ns/frontend_service.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"labels": {"name": "frontend"},
},
"spec": {
"port": 0,
"port": 10002,
"containerPort": 80,
"protocol": "TCP",
"selector": {
Expand Down
3 changes: 1 addition & 2 deletions examples/guestbook/guestbook_ns/redis-master.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"metadata": {
"name": "redis-master",
"labels": {
"name": "redis-master",
"template": "redis-master"
"name": "redis-master"
}
},
"spec": {
Expand Down
3 changes: 2 additions & 1 deletion examples/guestbook/guestbook_ns/redis-slave-controller.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"image": "brendanburns/redis-slave",
"ports": [
{
"containerPort": 6379
"containerPort": 6379,
"protocol": "TCP"
}
]
}
Expand Down

0 comments on commit 5aedf10

Please sign in to comment.