From b09593e98c63e821fd08662ade27029cc6a772fe Mon Sep 17 00:00:00 2001 From: Steve Perry Date: Sat, 23 Sep 2017 15:51:02 -0700 Subject: [PATCH] Update link targets to avoid redirects. (#5598) --- docs/admin/authentication.md | 2 +- docs/admin/authorization/index.md | 2 +- docs/admin/authorization/webhook.md | 2 +- .../configuration/manage-compute-resources-container.md | 2 +- .../overview/working-with-objects/kubernetes-objects.md | 2 +- docs/concepts/workloads/controllers/statefulset.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/admin/authentication.md b/docs/admin/authentication.md index c449d511ad..bf2c618972 100644 --- a/docs/admin/authentication.md +++ b/docs/admin/authentication.md @@ -435,7 +435,7 @@ the authentication webhook queries the remote service with a review object containing the token. Kubernetes will not challenge a request that lacks such a header. -Note that webhook API objects are subject to the same [versioning compatibility rules](/docs/api/) +Note that webhook API objects are subject to the same [versioning compatibility rules](/docs/concepts/overview/kubernetes-api/) as other Kubernetes API objects. Implementers should be aware of looser compatibility promises for beta objects and check the "apiVersion" field of the request to ensure correct deserialization. Additionally, the API server must diff --git a/docs/admin/authorization/index.md b/docs/admin/authorization/index.md index d7a009ef3b..43299b6163 100644 --- a/docs/admin/authorization/index.md +++ b/docs/admin/authorization/index.md @@ -37,7 +37,7 @@ Kubernetes reviews only the following API request attributes: --* For resource requests using `get`, `update`, `patch`, and `delete` verbs, you must provide the resource name. * **Subresource** - The subresource that is being accessed (for resource requests only). * **Namespace** - The namespace of the object that is being accessed (for namespaced resource requests only). - * **API group** - The API group being accessed (for resource requests only). An empty string designates the [core API group](/docs/api/). + * **API group** - The API group being accessed (for resource requests only). An empty string designates the [core API group](/docs/concepts/overview/kubernetes-api/). ## Determine the Request Verb To determine the request verb for a resource API endpoint, review the HTTP verb used and whether or not the request acts on an individual resource or a collection of resources: diff --git a/docs/admin/authorization/webhook.md b/docs/admin/authorization/webhook.md index b88fef6357..8a807bc35b 100644 --- a/docs/admin/authorization/webhook.md +++ b/docs/admin/authorization/webhook.md @@ -58,7 +58,7 @@ action. This object contains fields describing the user attempting to make the request, and either details about the resource being accessed or requests attributes. -Note that webhook API objects are subject to the same [versioning compatibility rules](/docs/api/) +Note that webhook API objects are subject to the same [versioning compatibility rules](/docs/concepts/overview/kubernetes-api/) as other Kubernetes API objects. Implementers should be aware of looser compatibility promises for beta objects and check the "apiVersion" field of the request to ensure correct deserialization. Additionally, the API Server must diff --git a/docs/concepts/configuration/manage-compute-resources-container.md b/docs/concepts/configuration/manage-compute-resources-container.md index 19a322f280..fa8d93cc5b 100644 --- a/docs/concepts/configuration/manage-compute-resources-container.md +++ b/docs/concepts/configuration/manage-compute-resources-container.md @@ -26,7 +26,7 @@ CPU and memory are collectively referred to as *compute resources*, or just *resources*. Compute resources are measurable quantities that can be requested, allocated, and consumed. They are distinct from -[API resources](/docs/api/). API resources, such as Pods and +[API resources](/docs/concepts/overview/kubernetes-api/). API resources, such as Pods and [Services](/docs/user-guide/services) are objects that can be read and modified through the Kubernetes API server. diff --git a/docs/concepts/overview/working-with-objects/kubernetes-objects.md b/docs/concepts/overview/working-with-objects/kubernetes-objects.md index b462fb5f0b..bb8358f617 100644 --- a/docs/concepts/overview/working-with-objects/kubernetes-objects.md +++ b/docs/concepts/overview/working-with-objects/kubernetes-objects.md @@ -56,7 +56,7 @@ In the `.yaml` file for the Kubernetes object you want to create, you'll need to * `kind` - What kind of object you want to create * `metadata` - Data that helps uniquely identify the object, including a `name` string, UID, and optional `namespace` -You'll also need to provide the object `spec` field. The precise format of the object `spec` is different for every Kubernetes object, and contains nested fields specific to that object. The [Kubernetes API reference](/docs/api/) can help you find the spec format for all of the objects you can create using Kubernetes. +You'll also need to provide the object `spec` field. The precise format of the object `spec` is different for every Kubernetes object, and contains nested fields specific to that object. The [Kubernetes API reference](/docs/concepts/overview/kubernetes-api/) can help you find the spec format for all of the objects you can create using Kubernetes. {% endcapture %} diff --git a/docs/concepts/workloads/controllers/statefulset.md b/docs/concepts/workloads/controllers/statefulset.md index 1aefb854f8..7c77781e5a 100644 --- a/docs/concepts/workloads/controllers/statefulset.md +++ b/docs/concepts/workloads/controllers/statefulset.md @@ -12,7 +12,7 @@ title: StatefulSets {% capture overview %} **StatefulSets are a beta feature in 1.7. This feature replaces the PetSets feature from 1.4. Users of PetSets are referred to the 1.5 -[Upgrade Guide](/docs/tasks/manage-stateful-set/upgrade-pet-set-to-stateful-set/) +[Upgrade Guide](/docs/tasks/run-application/upgrade-pet-set-to-stateful-set/) for further information on how to upgrade existing PetSets to StatefulSets.** {% include templates/glossary/snippet.md term="statefulset" length="long" %}