Skip to content

Commit aaede4e

Browse files
authored
Merge pull request #38054 from sftim/20221124_redo_service_glossary_entry
Revise glossary entry for Service
2 parents 25c74ff + 997a437 commit aaede4e

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

content/en/docs/concepts/services-networking/service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ weight: 10
1616

1717
<!-- overview -->
1818

19-
{{< glossary_definition term_id="service" length="short" >}}
19+
{{< glossary_definition term_id="service" length="short" prepend="In Kubernetes, a Service is" >}}
2020

2121
A key aim of Services in Kubernetes is that you don't need to modify your existing
2222
application to use an unfamiliar service discovery mechanism.

content/en/docs/reference/glossary/service.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,21 @@ date: 2018-04-12
55
full_link: /docs/concepts/services-networking/service/
66
short_description: >
77
A way to expose an application running on a set of Pods as a network service.
8-
9-
aka:
108
tags:
119
- fundamental
1210
- core-object
1311
---
14-
An abstract way to expose an application running on a set of {{< glossary_tooltip text="Pods" term_id="pod" >}} as a network service.
12+
A method for exposing a network application that is running as one or more
13+
{{< glossary_tooltip text="Pods" term_id="pod" >}} in your cluster.
1514

1615
<!--more-->
1716

18-
The set of Pods targeted by a Service is (usually) determined by a {{< glossary_tooltip text="selector" term_id="selector" >}}. If more Pods are added or removed, the set of Pods matching the selector will change. The Service makes sure that network traffic can be directed to the current set of Pods for the workload.
17+
The set of Pods targeted by a Service is (usually) determined by a
18+
{{< glossary_tooltip text="selector" term_id="selector" >}}. If more Pods are added or removed,
19+
the set of Pods matching the selector will change. The Service makes sure that network traffic
20+
can be directed to the current set of Pods for the workload.
21+
22+
Kubernetes Services either use IP networking (IPv4, IPv6, or both), or reference an external name in
23+
the Domain Name System (DNS).
24+
25+
The Service abstraction enables other mechanisms, such as Ingress and Gateway.

0 commit comments

Comments
 (0)