From 20e4e4d17cc7baddfad677a7f36c945a1fb92592 Mon Sep 17 00:00:00 2001 From: kairen Date: Sun, 17 Dec 2017 02:09:30 +0800 Subject: [PATCH] Fix broken link --- docs/concepts/api-extension/custom-resources.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/api-extension/custom-resources.md b/docs/concepts/api-extension/custom-resources.md index 5ce45d4e3171b..0035d677eb0b7 100644 --- a/docs/concepts/api-extension/custom-resources.md +++ b/docs/concepts/api-extension/custom-resources.md @@ -55,7 +55,7 @@ In a Declarative API, typically: - The main operations on the objects are CRUD-y (creating, reading, updating and deleting). - Transactions across objects are not required: the API represents a desired state, not an exact state. -Imperative APIs are not declarative. +Imperative APIs are not declarative. Signs that your API might not be declarative include: - The client says "do this", and then gets a synchornous response back when it is done. - The client says "do this", and then gets an operation ID back, and has to check a separate Operation objects to determine completion of the request. @@ -98,7 +98,7 @@ Kubernetes provides two ways to add custom resources to your cluster: Kubernetes provides these two options to meet the needs of different users, so that neither ease of use nor flexibility are compromised. -Aggregated APIs are subordinate APIServers that sit behind the primary API server, which acts as a proxy. This arrangement is called [API Aggregation](docs/concepts/api-extension/apiserver-aggregation.md) (AA). To users, it simply appears that the Kubernetes API is extended. +Aggregated APIs are subordinate APIServers that sit behind the primary API server, which acts as a proxy. This arrangement is called [API Aggregation](/docs/concepts/api-extension/apiserver-aggregation/) (AA). To users, it simply appears that the Kubernetes API is extended. Custom Resource Definitions (CRDS) allow users to create new types of resources without adding another APIserver. You do not need to understand API Aggregation to use CRDs.