Skip to content

Commit

Permalink
Add 'svc.' before 'cluster.local' and fix some typos
Browse files Browse the repository at this point in the history
1. Add 'svc.' before 'cluster.local'
2. ```Terminating`` to `Terminating`
3. 'DNS entry1' to 'DNS entry'
  • Loading branch information
hw-qiaolei committed Sep 7, 2015
1 parent e6e69e3 commit 41708fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/admin/namespaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ See [Admission control: Limit Range](../design/admission_control_limit_range.md)

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

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

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

## Namespaces and DNS

When you create a [Service](../../docs/user-guide/services.md), it creates a corresponding [DNS entry](dns.md)1.
This entry is of the form `<service-name>.<namespace-name>.cluster.local`, which means
When you create a [Service](../../docs/user-guide/services.md), it creates a corresponding [DNS entry](dns.md).
This entry is of the form `<service-name>.<namespace-name>.svc.cluster.local`, which means
that if a container just uses `<service-name>` it will resolve to the service which
is local to a namespace. This is useful for using the same configuration across
multiple namespaces such as Development, Staging and Production. If you want to reach
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/namespaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ $ kubectl config set-context $(CONTEXT) --namespace=<insert-namespace-name-here>
## Namespaces and DNS

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

0 comments on commit 41708fb

Please sign in to comment.