File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
concepts/services-networking
reference/kubernetes-api/service-resources Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,8 @@ Kubernetes networking addresses four concerns:
94
94
to be reachable from outside your cluster.
95
95
- [Ingress](/docs/concepts/services-networking/ingress/) provides extra functionality
96
96
specifically for exposing HTTP applications, websites and APIs.
97
+ - [Gateway API](/docs/concepts/services-networking/gateway/) is an {{<glossary_tooltip text="add-on" term_id="addons">}}
98
+ that provides an expressive, extensible, and role-oriented family of API kinds for modeling service networking.
97
99
- You can also use Services to
98
100
[publish services only for consumption inside your cluster](/docs/concepts/services-networking/service-traffic-policy/).
99
101
-->
@@ -106,6 +108,9 @@ Kubernetes 网络解决四方面的问题:
106
108
以支持来自于集群外部的访问。
107
109
- [ Ingress] ( /zh-cn/docs/concepts/services-networking/ingress/ )
108
110
提供专门用于暴露 HTTP 应用程序、网站和 API 的额外功能。
111
+ - [ Gateway API] ( /zh-cn/docs/concepts/services-networking/gateway/ )
112
+ 是一个{{<glossary_tooltip text="插件" term_id="addons">}},
113
+ 为服务网络建模提供富有表现力、可扩展和面向角色的 API 系列类别。
109
114
- 你也可以使用 Service
110
115
来[ 发布仅供集群内部使用的服务] ( /zh-cn/docs/concepts/services-networking/service-traffic-policy/ ) 。
111
116
Original file line number Diff line number Diff line change @@ -289,6 +289,8 @@ EndpointSlice 是实现某 Service 的端点的子集。一个 Service 可以有
289
289
290
290
* Kubernetes-defined prefixed names:
291
291
* 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540
292
+ * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455
293
+ * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455
292
294
293
295
* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.
294
296
-->
@@ -300,6 +302,8 @@ EndpointSlice 是实现某 Service 的端点的子集。一个 Service 可以有
300
302
301
303
* Kubernetes 定义的前缀名称:
302
304
* 'kubernetes.io/h2c' - 使用明文的 HTTP/2 协议,详见 https://www.rfc-editor.org/rfc/rfc7540
305
+ * 'kubernetes.io/ws' - 通过明文传输的 WebSocket,详见 https://www.rfc-editor.org/rfc/rfc6455
306
+ * 'kubernetes.io/wss' - 通过 TLS 传输的 WebSocket,详见 https://www.rfc-editor.org/rfc/rfc6455
303
307
304
308
* 其他协议应该使用带前缀的名称,例如 mycompany.com/my-custom-protocol。
305
309
You can’t perform that action at this time.
0 commit comments