Skip to content

Commit bc451ce

Browse files
authored
Merge pull request #27055 from atoato88/fix-install-kubectl-redirect
Replace redirect links of install kubectl
2 parents d267f3b + f553cbb commit bc451ce

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

content/en/docs/reference/kubectl/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ files by setting the KUBECONFIG environment variable or by setting the
1919
This overview covers `kubectl` syntax, describes the command operations, and provides common examples.
2020
For details about each command, including all the supported flags and subcommands, see the
2121
[kubectl](/docs/reference/generated/kubectl/kubectl-commands/) reference documentation.
22-
For installation instructions see [installing kubectl](/docs/tasks/tools/install-kubectl/).
22+
For installation instructions see [installing kubectl](/docs/tasks/tools/).
2323

2424
<!-- body -->
2525

content/en/docs/setup/production-environment/tools/kops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ kops is an automated provisioning system:
2323
## {{% heading "prerequisites" %}}
2424

2525

26-
* You must have [kubectl](/docs/tasks/tools/install-kubectl/) installed.
26+
* You must have [kubectl](/docs/tasks/tools/) installed.
2727

2828
* You must [install](https://github.com/kubernetes/kops#installing) `kops` on a 64-bit (AMD64 and Intel 64) device architecture.
2929

content/en/docs/setup/production-environment/tools/kubeadm/install-kubeadm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ kubelet and the control plane is supported, but the kubelet version may never ex
160160
server version. For example, the kubelet running 1.7.0 should be fully compatible with a 1.8.0 API server,
161161
but not vice versa.
162162

163-
For information about installing `kubectl`, see [Install and set up kubectl](/docs/tasks/tools/install-kubectl/).
163+
For information about installing `kubectl`, see [Install and set up kubectl](/docs/tasks/tools/).
164164

165165
{{< warning >}}
166166
These instructions exclude all Kubernetes packages from any system upgrades.

content/en/docs/tasks/administer-cluster/cluster-upgrade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ If your cluster was deployed using the `kubeadm` tool, refer to
3434
for detailed information on how to upgrade the cluster.
3535

3636
Once you have upgraded the cluster, remember to
37-
[install the latest version of `kubectl`](/docs/tasks/tools/install-kubectl/).
37+
[install the latest version of `kubectl`](/docs/tasks/tools/).
3838

3939
### Manual deployments
4040

@@ -52,7 +52,7 @@ You should manually update the control plane following this sequence:
5252
- cloud controller manager, if you use one
5353

5454
At this point you should
55-
[install the latest version of `kubectl`](/docs/tasks/tools/install-kubectl/).
55+
[install the latest version of `kubectl`](/docs/tasks/tools/).
5656

5757
For each node in your cluster, [drain](/docs/tasks/administer-cluster/safely-drain-node/)
5858
that node and then either replace it with a new node that uses the {{< skew latestVersion >}}

content/en/docs/tasks/manage-kubernetes-objects/declarative-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ preview of what changes `apply` will make.
1616
## {{% heading "prerequisites" %}}
1717

1818

19-
Install [`kubectl`](/docs/tasks/tools/install-kubectl/).
19+
Install [`kubectl`](/docs/tasks/tools/).
2020

2121
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
2222

content/en/docs/tasks/manage-kubernetes-objects/imperative-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ explains how those commands are organized and how to use them to manage live obj
1212

1313
## {{% heading "prerequisites" %}}
1414

15-
Install [`kubectl`](/docs/tasks/tools/install-kubectl/).
15+
Install [`kubectl`](/docs/tasks/tools/).
1616

1717
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
1818

content/en/docs/tasks/manage-kubernetes-objects/imperative-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This document explains how to define and manage objects using configuration file
1313
## {{% heading "prerequisites" %}}
1414

1515

16-
Install [`kubectl`](/docs/tasks/tools/install-kubectl/).
16+
Install [`kubectl`](/docs/tasks/tools/).
1717

1818
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
1919

content/en/docs/tasks/manage-kubernetes-objects/kustomization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ kubectl apply -k <kustomization_directory>
2929
## {{% heading "prerequisites" %}}
3030

3131

32-
Install [`kubectl`](/docs/tasks/tools/install-kubectl/).
32+
Install [`kubectl`](/docs/tasks/tools/).
3333

3434
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
3535

content/en/docs/tasks/service-catalog/install-service-catalog-using-helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Up to date information on this process can be found at the
1919
* You must have a Kubernetes cluster with cluster DNS enabled.
2020
* If you are using a cloud-based Kubernetes cluster or {{< glossary_tooltip text="Minikube" term_id="minikube" >}}, you may already have cluster DNS enabled.
2121
* If you are using `hack/local-up-cluster.sh`, ensure that the `KUBE_ENABLE_CLUSTER_DNS` environment variable is set, then run the install script.
22-
* [Install and setup kubectl](/docs/tasks/tools/install-kubectl/) v1.7 or higher. Make sure it is configured to connect to the Kubernetes cluster.
22+
* [Install and setup kubectl](/docs/tasks/tools/) v1.7 or higher. Make sure it is configured to connect to the Kubernetes cluster.
2323
* Install [Helm](https://helm.sh/) v2.7.0 or newer.
2424
* Follow the [Helm install instructions](https://helm.sh/docs/intro/install/).
2525
* If you already have an appropriate version of Helm installed, execute `helm init` to install Tiller, the server-side component of Helm.

content/en/docs/tasks/service-catalog/install-service-catalog-using-sc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Service Catalog itself can work with any kind of managed service, not just Googl
2323
* Install [Go 1.6+](https://golang.org/dl/) and set the `GOPATH`.
2424
* Install the [cfssl](https://github.com/cloudflare/cfssl) tool needed for generating SSL artifacts.
2525
* Service Catalog requires Kubernetes version 1.7+.
26-
* [Install and setup kubectl](/docs/tasks/tools/install-kubectl/) so that it is configured to connect to a Kubernetes v1.7+ cluster.
26+
* [Install and setup kubectl](/docs/tasks/tools/) so that it is configured to connect to a Kubernetes v1.7+ cluster.
2727
* The kubectl user must be bound to the *cluster-admin* role for it to install Service Catalog. To ensure that this is true, run the following command:
2828

2929
kubectl create clusterrolebinding cluster-admin-binding --clusterrole=cluster-admin --user=<user-name>

0 commit comments

Comments
 (0)