k3s/examples/guestbook/v1beta3
Tim Hockin 186818d787 WIP: Implement multi-port Services 2015-03-30 19:28:11 -07:00
..
README.md renaming folder to v1beta3 and updating testcases 2015-02-24 03:17:22 +05:30
frontend-controller.json Rewrote guestbook-go example to use kube-dns 2015-03-18 12:07:16 +01:00
frontend-service.json WIP: Implement multi-port Services 2015-03-30 19:28:11 -07:00
redis-master-service.json WIP: Implement multi-port Services 2015-03-30 19:28:11 -07:00
redis-master.json format all json files 2015-02-24 04:20:32 +05:30
redis-slave-controller.json Rewrote guestbook-go example to use kube-dns 2015-03-18 12:07:16 +01:00
redis-slave-service.json WIP: Implement multi-port Services 2015-03-30 19:28:11 -07:00

README.md

GuestBook v1beta3 example

This example shows how to build a simple, multi-tier web application using Kubernetes and Docker.

The example consists of:

  • A web frontend
  • A redis master (for storage and a replicated set of redis slaves)

The web front end interacts with the redis master via javascript redis API calls.

The v1beta3 API is not enabled by default. The kube-apiserver process needs to run with the --runtime_config=api/v1beta3 argument. Use the following command to enable it: $sudo sed -i 's|KUBE_API_ARGS="|KUBE_API_ARGS="--runtime_config=api/v1beta3 |' /etc/kubernetes/apiserver