44 lines
1.2 KiB
Markdown
44 lines
1.2 KiB
Markdown
---
|
||
title: Deployment
|
||
id: deployment
|
||
date: 2018-04-12
|
||
full_link: /zh-cn/docs/concepts/workloads/controllers/deployment/
|
||
short_description: >
|
||
管理集群上的多副本应用。
|
||
aka:
|
||
tags:
|
||
- fundamental
|
||
- core-object
|
||
- workload
|
||
---
|
||
<!--
|
||
title: Deployment
|
||
id: deployment
|
||
date: 2018-04-12
|
||
full_link: /docs/concepts/workloads/controllers/deployment/
|
||
short_description: >
|
||
Manages a replicated application on your cluster.
|
||
|
||
aka:
|
||
tags:
|
||
- fundamental
|
||
- core-object
|
||
- workload
|
||
-->
|
||
|
||
<!--
|
||
An API object that manages a replicated application, typically by running Pods with no local state.
|
||
-->
|
||
管理多副本应用的一种 API 对象,通常通过运行没有本地状态的 Pod 来完成工作。
|
||
|
||
<!--more-->
|
||
|
||
<!--
|
||
Each replica is represented by a {{< glossary_tooltip term_id="pod" >}}, and the Pods are distributed among the
|
||
{{< glossary_tooltip text="nodes" term_id="node" >}} of a cluster.
|
||
For workloads that do require local state, consider using a {{< glossary_tooltip term_id="StatefulSet" >}}.
|
||
-->
|
||
每个副本表现为一个 {{<glossary_tooltip term_id="pod" >}},
|
||
Pod 分布在集群中的{{<glossary_tooltip text="节点" term_id="node" >}}上。
|
||
对于确实需要本地状态的工作负载,请考虑使用 {{<glossary_tooltip term_id="StatefulSet" >}}。
|