Commit efaeb25a authored by jackgr's avatar jackgr

Readme fixes.

parent 2999bb9b
...@@ -8,21 +8,21 @@ You can use it deploy ready-to-use types, such as: ...@@ -8,21 +8,21 @@ You can use it deploy ready-to-use types, such as:
* [Replicated Service](types/replicatedservice/v1) * [Replicated Service](types/replicatedservice/v1)
* [Redis](types/redis/v1) * [Redis](types/redis/v1)
As you can see, types live in ordinary Github repositories. This repository is a Types live in ordinary Github repositories. This repository is a DM type registry.
DM type registry.
You can also use DM to deploy simple templates that use types, such as:
You can also use DM to deploy simple templates that use existing types, such as:
* [Guestbook](examples/guestbook/guestbook.yaml) * [Guestbook](examples/guestbook/guestbook.yaml)
* [Deployment Manager](examples/bootstrap/bootstrap.yaml) * [Deployment Manager](examples/bootstrap/bootstrap.yaml)
As you can see, a template is just a `YAML` file that supplies parameters to A template is just a `YAML` file that supplies parameters. (Yes, you're reading
instantiate types. (Yes, you're reading that second example correctly. It uses DM that second example correctly. It uses DM to deploy itself.
to deploy itself. See [examples/bootstrap/README.md](examples/bootstrap/README.md) See [examples/bootstrap/README.md](examples/bootstrap/README.md) for more information.)
for more information)
DM runs server side, on your Kubernetes cluster, so it can tell you what types DM runs server side, in your Kubernetes cluster, so it can tell you what types
you've instantiated in the cluster, and even what resources comprise a given instance. you've instantiated there, and even what instances you've created of a given type.
So, you can ask questions like: So, you can ask questions like:
* Show me all the Redis slaves running in this cluster. * Show me all the Redis slaves running in this cluster.
* Show me all the resources used by Redis. * Show me all the resources used by Redis.
...@@ -38,6 +38,7 @@ for the Kubernetes configuration SIG. Your feedback and contributions are welcom ...@@ -38,6 +38,7 @@ for the Kubernetes configuration SIG. Your feedback and contributions are welcom
## Installing Deployment Manager ## Installing Deployment Manager
Follow these 3 steps to install DM: Follow these 3 steps to install DM:
1. Make sure your Kubernetes cluster is up and running, and that you can run 1. Make sure your Kubernetes cluster is up and running, and that you can run
`kubectl` commands against it. `kubectl` commands against it.
1. Clone this repository into the src folder of your GOPATH, if you haven't already. 1. Clone this repository into the src folder of your GOPATH, if you haven't already.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment