From dfb11fd6c25671adc06df133ef9e46bae5fb7583 Mon Sep 17 00:00:00 2001 From: Rajakavitha1 <37059749+Rajakavitha1@users.noreply.github.com> Date: Wed, 4 Apr 2018 22:53:08 +0530 Subject: [PATCH] Update replicationcontroller.md (#7973) Fixed the 404 listed in : https://github.com/kubernetes/website/issues/7924 --- .../concepts/workloads/controllers/replicationcontroller.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/concepts/workloads/controllers/replicationcontroller.md b/docs/concepts/workloads/controllers/replicationcontroller.md index 019178f9c6..60c6da00d3 100644 --- a/docs/concepts/workloads/controllers/replicationcontroller.md +++ b/docs/concepts/workloads/controllers/replicationcontroller.md @@ -160,7 +160,7 @@ If you do not specify `.spec.replicas`, then it defaults to 1. ### Deleting a ReplicationController and its Pods To delete a ReplicationController and all its pods, use [`kubectl -delete`](/docs/user-guide/kubectl/{{page.version}}/#delete). Kubectl will scale the ReplicationController to zero and wait +delete`](/docs/reference/generated/kubectl/kubectl-commands/{{page.version}}/#delete). Kubectl will scale the ReplicationController to zero and wait for it to delete each pod before deleting the ReplicationController itself. If this kubectl command is interrupted, it can be restarted. @@ -171,7 +171,7 @@ When using the REST API or go client library, you need to do the steps explicitl You can delete a ReplicationController without affecting any of its pods. -Using kubectl, specify the `--cascade=false` option to [`kubectl delete`](/docs/user-guide/kubectl/{{page.version}}/#delete). +Using kubectl, specify the `--cascade=false` option to [`kubectl delete`](/docs/reference/generated/kubectl/kubectl-commands/{{page.version}}/#delete). When using the REST API or go client library, simply delete the ReplicationController object. @@ -205,7 +205,7 @@ Ideally, the rolling update controller would take application readiness into acc The two ReplicationControllers would need to create pods with at least one differentiating label, such as the image tag of the primary container of the pod, since it is typically image updates that motivate rolling updates. Rolling update is implemented in the client tool -[`kubectl rolling-update`](/docs/user-guide/kubectl/{{page.version}}/#rolling-update). Visit [`kubectl rolling-update` task](/docs/tasks/run-application/rolling-update-replication-controller/) for more concrete examples. +[`kubectl rolling-update`](/docs/reference/generated/kubectl/kubectl-commands/{{page.version}}/#rolling-update). Visit [`kubectl rolling-update` task](/docs/tasks/run-application/rolling-update-replication-controller/) for more concrete examples. ### Multiple release tracks