Skip to content

Commit def9266

Browse files
author
Kubernetes Submit Queue
authored
Merge pull request #45469 from jianglingxia/jlx-0508
Automatic merge from submit-queue modify the outdated link modify the outdated link
2 parents 5bd49b4 + 01034ba commit def9266

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cluster-dns/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $ hack/dev-build-and-up.sh
1313

1414
### Step One: Create two namespaces
1515

16-
We'll see how cluster DNS works across multiple [namespaces](../../docs/user-guide/namespaces.md), first we need to create two namespaces:
16+
We'll see how cluster DNS works across multiple [namespaces](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/), first we need to create two namespaces:
1717

1818
```sh
1919
$ kubectl create -f examples/cluster-dns/namespace-dev.yaml
@@ -41,7 +41,7 @@ You can view your cluster name and user name in kubernetes config at ~/.kube/con
4141

4242
### Step Two: Create backend replication controller in each namespace
4343

44-
Use the file [`examples/cluster-dns/dns-backend-rc.yaml`](dns-backend-rc.yaml) to create a backend server [replication controller](../../docs/user-guide/replication-controller.md) in each namespace.
44+
Use the file [`examples/cluster-dns/dns-backend-rc.yaml`](dns-backend-rc.yaml) to create a backend server [replication controller](https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/) in each namespace.
4545

4646
```sh
4747
$ kubectl config use-context dev
@@ -69,7 +69,7 @@ dns-backend dns-backend ddysher/dns-backend name=dns-backend 1
6969
### Step Three: Create backend service
7070

7171
Use the file [`examples/cluster-dns/dns-backend-service.yaml`](dns-backend-service.yaml) to create
72-
a [service](../../docs/user-guide/services.md) for the backend server.
72+
a [service](https://kubernetes.io/docs/concepts/services-networking/service/) for the backend server.
7373

7474
```sh
7575
$ kubectl config use-context dev
@@ -96,7 +96,7 @@ dns-backend 10.0.2.4 <none> 8000/TCP name=dns-
9696

9797
### Step Four: Create client pod in one namespace
9898

99-
Use the file [`examples/cluster-dns/dns-frontend-pod.yaml`](dns-frontend-pod.yaml) to create a client [pod](../../docs/user-guide/pods.md) in dev namespace. The client pod will make a connection to backend and exit. Specifically, it tries to connect to address `http://dns-backend.development.cluster.local:8000`.
99+
Use the file [`examples/cluster-dns/dns-frontend-pod.yaml`](dns-frontend-pod.yaml) to create a client [pod](https://kubernetes.io/docs/concepts/workloads/pods/pod/) in dev namespace. The client pod will make a connection to backend and exit. Specifically, it tries to connect to address `http://dns-backend.development.cluster.local:8000`.
100100

101101
```sh
102102
$ kubectl config use-context dev

0 commit comments

Comments
 (0)