Skip to content

Commit 5cd52c3

Browse files
Kyle Baisteveperry-53
authored andcommitted
Fix broken link (kubernetes#6691)
1 parent 63e9bfb commit 5cd52c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/concepts/api-extension/custom-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ In a Declarative API, typically:
5555
- The main operations on the objects are CRUD-y (creating, reading, updating and deleting).
5656
- Transactions across objects are not required: the API represents a desired state, not an exact state.
5757

58-
Imperative APIs are not declarative.
58+
Imperative APIs are not declarative.
5959
Signs that your API might not be declarative include:
6060
- The client says "do this", and then gets a synchornous response back when it is done.
6161
- 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:
9898

9999
Kubernetes provides these two options to meet the needs of different users, so that neither ease of use nor flexibility are compromised.
100100

101-
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.
101+
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.
102102

103103
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.
104104

0 commit comments

Comments
 (0)