From fbe1d66398c7348ca9d0fe1ba38b5659419dc245 Mon Sep 17 00:00:00 2001 From: Lv Jiawei Date: Mon, 9 Dec 2019 14:12:20 +0800 Subject: [PATCH] update service resource spec url --- docs/serving/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/serving/README.md b/docs/serving/README.md index ebaf1e9abca..924a166d735 100644 --- a/docs/serving/README.md +++ b/docs/serving/README.md @@ -15,22 +15,22 @@ Knative Serving defines a set of objects as Kubernetes Custom Resource Definitions (CRDs). These objects are used to define and control 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/docs/blob/master/docs/serving/spec/knative-api-specification-1.0.md#service): The `service.serving.knative.dev` resource automatically manages the whole lifecycle of your workload. It controls the creation of other 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 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/docs/blob/master/docs/serving/spec/knative-api-specification-1.0.md#route): The `route.serving.knative.dev` resource maps a network endpoint to one or more revisions. You can manage the traffic in several ways, including fractional traffic and named routes. -- [Configuration](https://github.com/knative/serving/blob/master/docs/spec/spec.md#configuration): +- [Configuration](https://github.com/knative/docs/blob/master/docs/serving/spec/knative-api-specification-1.0.md#configuration): The `configuration.serving.knative.dev` resource maintains the desired state for your deployment. It provides a clean separation between code and configuration and follows the Twelve-Factor App methodology. Modifying a configuration creates a new revision. -- [Revision](https://github.com/knative/serving/blob/master/docs/spec/spec.md#revision): +- [Revision](https://github.com/knative/docs/blob/master/docs/serving/spec/knative-api-specification-1.0.md#revision): 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 are immutable objects and can be retained for as long as useful. Knative