Fix broken links to replicaset examples (#14199)

This commit is contained in:
Karthik Ravikanti
2019-05-07 23:33:51 +08:00
committed by Kubernetes Prow Robot
parent 1054269082
commit 0b0087329b
@@ -54,7 +54,7 @@ Saving this manifest into `frontend.yaml` and submitting it to a Kubernetes clus
create the defined ReplicaSet and the Pods that it manages. create the defined ReplicaSet and the Pods that it manages.
```shell ```shell
kubectl apply -f http://k8s.io/examples/controllers/frontend.yaml kubectl apply -f https://kubernetes.io/examples/controllers/frontend.yaml
``` ```
You can then get the current ReplicaSets deployed: You can then get the current ReplicaSets deployed:
@@ -162,7 +162,7 @@ Suppose you create the Pods after the frontend ReplicaSet has been deployed and
fulfill its replica count requirement: fulfill its replica count requirement:
```shell ```shell
kubectl apply -f http://k8s.io/examples/pods/pod-rs.yaml kubectl apply -f https://kubernetes.io/examples/pods/pod-rs.yaml
``` ```
The new Pods will be acquired by the ReplicaSet, and then immediately terminated as the ReplicaSet would be over The new Pods will be acquired by the ReplicaSet, and then immediately terminated as the ReplicaSet would be over
@@ -184,12 +184,12 @@ pod2 0/1 Terminating 0 4s
If you create the Pods first: If you create the Pods first:
```shell ```shell
kubectl apply -f http://k8s.io/examples/pods/pod-rs.yaml kubectl apply -f https://kubernetes.io/examples/pods/pod-rs.yaml
``` ```
And then create the ReplicaSet however: And then create the ReplicaSet however:
```shell ```shell
kubectl apply -f http://k8s.io/examples/controllers/frontend.yaml kubectl apply -f https://kubernetes.io/examples/controllers/frontend.yaml
``` ```
You shall see that the ReplicaSet has acquired the Pods and has only created new ones according to its spec until the You shall see that the ReplicaSet has acquired the Pods and has only created new ones according to its spec until the