From 6631c636525a1fce9cf127d9da94d977168e8c01 Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Mon, 2 Mar 2015 15:13:50 -0500 Subject: [PATCH] add tl;dr version of README.md --- examples/storm/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 examples/storm/README.md diff --git a/examples/storm/README.md b/examples/storm/README.md new file mode 100644 index 0000000000000..51ff13c62f586 --- /dev/null +++ b/examples/storm/README.md @@ -0,0 +1,25 @@ +# Storm example + +Following this example, you will create a functional [Apache +Storm](http://storm.apache.org/) cluster using Kubernetes and +[Docker](http://docker.io). + +You will setup an [Apache ZooKeeper](http://zookeeper.apache.org/) +service, a Storm master service (a.k.a. Nimbus server), and a set of +Storm workers (a.k.a. supervisors). + +## tl;dr + +```kubectl create -f zookeeper.json``` + +```kubectl create -f zookeeper-service.json``` + +Make sure the ZooKeeper Pod is running (use: ```kubectl get pods```). + +```kubectl create -f storm-nimbus.json``` + +```kubectl create -f storm-nimbus-service.json``` + +Make sure the Nimbus Pod is running. + +```kubectl create -f storm-worker-controller.json```