mirror of https://github.com/knative/docs.git
Copy edits to serving/README (#165)
File contains a link to DNS.md, which currently doesn't exist.
This commit is contained in:
parent
96e24e3585
commit
039a436722
|
@ -19,9 +19,9 @@ Custom Resource Definitions (CRDs). These objects are used to define and control
|
||||||
how your serverless workload behaves on the cluster:
|
how your serverless workload behaves on the cluster:
|
||||||
|
|
||||||
* [Service](https://github.com/knative/serving/blob/master/docs/spec/spec.md#service):
|
* [Service](https://github.com/knative/serving/blob/master/docs/spec/spec.md#service):
|
||||||
The `service.serving.knative.dev` resource manages the whole
|
The `service.serving.knative.dev` resource automatically manages the whole
|
||||||
lifecycle of your workload automatically. It controls the creation of other
|
lifecycle of your workload. It controls the creation of other
|
||||||
objects to ensure your app has a route, configuration, and a new revision
|
objects to ensure that your app has a route, a configuration, and a new revision
|
||||||
for each update of the service. Service can be defined to always route traffic to the
|
for each update of the service. Service can be defined to always route traffic to the
|
||||||
latest revision or to a pinned revision.
|
latest revision or to a pinned revision.
|
||||||
* [Route](https://github.com/knative/serving/blob/master/docs/spec/spec.md#route):
|
* [Route](https://github.com/knative/serving/blob/master/docs/spec/spec.md#route):
|
||||||
|
@ -34,11 +34,11 @@ how your serverless workload behaves on the cluster:
|
||||||
code and configuration and follows the Twelve-Factor App methodology. Modifying a configuration
|
code and configuration and follows the Twelve-Factor App methodology. Modifying a configuration
|
||||||
creates a new revision.
|
creates a new revision.
|
||||||
* [Revision](https://github.com/knative/serving/blob/master/docs/spec/spec.md#revision):
|
* [Revision](https://github.com/knative/serving/blob/master/docs/spec/spec.md#revision):
|
||||||
The `revision.serving.knative.dev` resource is a point in time snapshot
|
The `revision.serving.knative.dev` resource is a point-in-time snapshot
|
||||||
of the code and configuration for each modification made to the workload. Revisions
|
of the code and configuration for each modification made to the workload. Revisions
|
||||||
are immutable objects and can be retained for as long as useful.
|
are immutable objects and can be retained for as long as useful.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue