From 426e44bbad56d16ac8327bb976714b98c766a930 Mon Sep 17 00:00:00 2001 From: lostsquirrel Date: Thu, 20 Aug 2020 16:24:10 +0800 Subject: [PATCH] remove the non paire parenthese --- content/en/docs/concepts/workloads/controllers/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/workloads/controllers/deployment.md b/content/en/docs/concepts/workloads/controllers/deployment.md index ba3e3fa95c..11feadf410 100644 --- a/content/en/docs/concepts/workloads/controllers/deployment.md +++ b/content/en/docs/concepts/workloads/controllers/deployment.md @@ -1054,7 +1054,7 @@ The `.spec.template` and `.spec.selector` are the only required field of the `.s The `.spec.template` is a [Pod template](/docs/concepts/workloads/pods/#pod-templates). It has exactly the same schema as a {{< glossary_tooltip text="Pod" term_id="pod" >}}, except it is nested and does not have an `apiVersion` or `kind`. In addition to required fields for a Pod, a Pod template in a Deployment must specify appropriate -labels and an appropriate restart policy. For labels, make sure not to overlap with other controllers. See [selector](#selector)). +labels and an appropriate restart policy. For labels, make sure not to overlap with other controllers. See [selector](#selector). Only a [`.spec.template.spec.restartPolicy`](/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy) equal to `Always` is allowed, which is the default if not specified.