48 lines
1.6 KiB
Markdown
48 lines
1.6 KiB
Markdown
---
|
|
title: kube-apiserver
|
|
id: kube-apiserver
|
|
date: 2018-04-12
|
|
full_link: /zh/docs/reference/command-line-tools-reference/kube-apiserver/
|
|
short_description: >
|
|
提供 Kubernetes API 服务的控制面组件。
|
|
|
|
aka:
|
|
tags:
|
|
- architecture
|
|
- fundamental
|
|
---
|
|
|
|
<!--
|
|
title: kube-apiserver
|
|
id: kube-apiserver
|
|
date: 2018-04-12
|
|
full_link: /zh/docs/reference/command-line-tools-reference/kube-apiserver/
|
|
short_description: >
|
|
Control plane component that serves the Kubernetes API.
|
|
|
|
aka:
|
|
tags:
|
|
- architecture
|
|
- fundamental
|
|
-->
|
|
|
|
<!--
|
|
The API server is a component of the Kubernetes
|
|
{{< glossary_tooltip text="control plane" term_id="control-plane" >}} that exposes the Kubernetes API.
|
|
The API server is the front end for the Kubernetes control plane.
|
|
-->
|
|
API 服务器是 Kubernetes {{< glossary_tooltip text="控制面" term_id="control-plane" >}}的组件,
|
|
该组件公开了 Kubernetes API。
|
|
API 服务器是 Kubernetes 控制面的前端。
|
|
|
|
<!--more-->
|
|
|
|
<!--
|
|
The main implementation of a Kubernetes API server is [kube-apiserver](/docs/reference/generated/kube-apiserver/).
|
|
kube-apiserver is designed to scale horizontally—that is, it scales by deploying more instances.
|
|
You can run several instances of kube-apiserver and balance traffic between those instances.
|
|
-->
|
|
Kubernetes API 服务器的主要实现是 [kube-apiserver](/zh/docs/reference/command-line-tools-reference/kube-apiserver/)。
|
|
kube-apiserver 设计上考虑了水平伸缩,也就是说,它可通过部署多个实例进行伸缩。
|
|
你可以运行 kube-apiserver 的多个实例,并在这些实例之间平衡流量。
|