minor typo/cleanups

This commit is contained in:
Clint Shryock
2015-09-23 16:41:23 -05:00
parent 1f0cf5f910
commit 3b6aaaf9d8
2 changed files with 5 additions and 5 deletions

View File

@@ -21,13 +21,13 @@ guide for all available features as well as internals.
Nomad is a tool for managing a cluster of machines and running applications
on them. Nomad abstracts away machines and the location of applications,
and instead enables user to declare what they want to run and Nomad handles
and instead enables users to declare what they want to run and Nomad handles
where they should run and how to run them.
The key features of Nomad are:
* **Docker Support**: Nomad supports Docker as a first-class workload type.
Jobs submitted to Nomad can use the docker driver to easily deploy containerized
Jobs submitted to Nomad can use the `docker` driver to easily deploy containerized
applications to a cluster. Nomad enforces the user-specified constraints,
ensuring the application only runs in the correct region, datacenter, and host
environment. Jobs can specify the number of instances needed and

View File

@@ -18,14 +18,14 @@ Microservices, or Service Oriented Architectures (SOA), are a design paradigm in
services with narrow scope, tight state encapsulation, and API driven interfaces interact together
to form a larger application. However, they add an operational challenge of managing hundreds
or thousands of services instead of a few large applications. Nomad provides a platform for
managing microservices making it easier to adopt the paradigm.
managing microservices, making it easier to adopt the paradigm.
#### Hybrid Cloud Deployments
Nomad is designed to handle multi-datacenter and multi-region deployments and is cloud agnostic.
This allows Nomad to schedule in private datacenters running bare metal, OpenStack, or VMware
along side an AWS, Azure, or GCE cloud deployment. This makes it easier to migrate workloads
incrementally or to utilize the cloud for bursting.
alongside an AWS, Azure, or GCE cloud deployment. This makes it easier to migrate workloads
incrementally, or to utilize the cloud for bursting.
#### E-Commerce