pull/9043/head
lovejoy 2018-06-13 07:30:28 +08:00 committed by k8s-ci-robot
parent fb83e952b8
commit 69ccd871c7
1 changed files with 3 additions and 3 deletions

View File

@ -44,13 +44,13 @@ The following is an example of a Deployment. It creates a ReplicaSet to bring up
In this example: In this example:
* A Deployment named `nginx-deployment` is created, indicated by the `metadata: name` field. * A Deployment named `nginx-deployment` is created, indicated by the `.metadata.name` field.
* The Deployment creates three replicated Pods, indicated by the `replicas` field. * The Deployment creates three replicated Pods, indicated by the `replicas` field.
* The `selector` field defines how the Deployment finds which Pods to manage. * The `selector` field defines how the Deployment finds which Pods to manage.
In this case, we simply select on one label defined in the Pod template (`app: nginx`). In this case, we simply select on one label defined in the Pod template (`app: nginx`).
However, more sophisticated selection rules are possible, However, more sophisticated selection rules are possible,
as long as the Pod template itself satisfies the rule. as long as the Pod template itself satisfies the rule.
* The Pod template's specification, or `template: spec` field, indicates that * The Pod template's specification, or `.template.spec` field, indicates that
the Pods run one container, `nginx`, which runs the `nginx` the Pods run one container, `nginx`, which runs the `nginx`
[Docker Hub](https://hub.docker.com/) image at version 1.7.9. [Docker Hub](https://hub.docker.com/) image at version 1.7.9.
* The Deployment opens port 80 for use by the Pods. * The Deployment opens port 80 for use by the Pods.
@ -101,7 +101,7 @@ When you inspect the Deployments in your cluster, the following fields are displ
Notice how the values in each field correspond to the values in the Deployment specification: Notice how the values in each field correspond to the values in the Deployment specification:
* The number of desired replicas is 3 according to `spec: replicas` field. * The number of desired replicas is 3 according to `.spec.replicas` field.
* The number of current replicas is 0 according to the `.status.replicas` field. * The number of current replicas is 0 according to the `.status.replicas` field.
* The number of up-to-date replicas is 0 according to the `.status.updatedReplicas` field. * The number of up-to-date replicas is 0 according to the `.status.updatedReplicas` field.
* The number of available replicas is 0 according to the `.status.availableReplicas` field. * The number of available replicas is 0 according to the `.status.availableReplicas` field.