diff --git a/examples/guestbook/frontend-controller.json b/examples/guestbook/frontend-controller.json index c764612af2..9302f560a4 100644 --- a/examples/guestbook/frontend-controller.json +++ b/examples/guestbook/frontend-controller.json @@ -9,6 +9,7 @@ "version": "v1beta1", "id": "frontendController", "containers": [{ + "name": "php-redis", "image": "brendanburns/php-redis", "ports": [{"containerPort": 80, "hostPort": 8000}] }] diff --git a/examples/guestbook/frontend-service.json b/examples/guestbook/frontend-service.json new file mode 100644 index 0000000000..11d4bba177 --- /dev/null +++ b/examples/guestbook/frontend-service.json @@ -0,0 +1,7 @@ +{ + "id": "frontend", + "port": 9998, + "selector": { + "name": "frontend" + } +} diff --git a/examples/guestbook/redis-slave-controller.json b/examples/guestbook/redis-slave-controller.json index 2257d288be..2fb34bb0dc 100644 --- a/examples/guestbook/redis-slave-controller.json +++ b/examples/guestbook/redis-slave-controller.json @@ -9,6 +9,7 @@ "version": "v1beta1", "id": "redisSlaveController", "containers": [{ + "name": "slave" "image": "brendanburns/redis-slave", "ports": [{"containerPort": 6379, "hostPort": 6380}] }]