Skip to content

Commit 41708fb

Browse files
committed
Add 'svc.' before 'cluster.local' and fix some typos
1. Add 'svc.' before 'cluster.local' 2. ```Terminating`` to `Terminating` 3. 'DNS entry1' to 'DNS entry'
1 parent e6e69e3 commit 41708fb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/admin/namespaces.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ See [Admission control: Limit Range](../design/admission_control_limit_range.md)
122122

123123
A namespace can be in one of two phases:
124124
* `Active` the namespace is in use
125-
* ```Terminating`` the namespace is being deleted, and can not be used for new objects
125+
* `Terminating` the namespace is being deleted, and can not be used for new objects
126126

127127
See the [design doc](../design/namespaces.md#phases) for more details.
128128

@@ -166,8 +166,8 @@ This delete is asynchronous, so for a time you will see the namespace in the `Te
166166

167167
## Namespaces and DNS
168168

169-
When you create a [Service](../../docs/user-guide/services.md), it creates a corresponding [DNS entry](dns.md)1.
170-
This entry is of the form `<service-name>.<namespace-name>.cluster.local`, which means
169+
When you create a [Service](../../docs/user-guide/services.md), it creates a corresponding [DNS entry](dns.md).
170+
This entry is of the form `<service-name>.<namespace-name>.svc.cluster.local`, which means
171171
that if a container just uses `<service-name>` it will resolve to the service which
172172
is local to a namespace. This is useful for using the same configuration across
173173
multiple namespaces such as Development, Staging and Production. If you want to reach

docs/user-guide/namespaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ $ kubectl config set-context $(CONTEXT) --namespace=<insert-namespace-name-here>
105105
## Namespaces and DNS
106106

107107
When you create a [Service](services.md), it creates a corresponding [DNS entry](../admin/dns.md).
108-
This entry is of the form `<service-name>.<namespace-name>.cluster.local`, which means
108+
This entry is of the form `<service-name>.<namespace-name>.svc.cluster.local`, which means
109109
that if a container just uses `<service-name>` it will resolve to the service which
110110
is local to a namespace. This is useful for using the same configuration across
111111
multiple namespaces such as Development, Staging and Production. If you want to reach

0 commit comments

Comments
 (0)