From ee47973f374e260f542b96d77502c19bcdf44745 Mon Sep 17 00:00:00 2001 From: AdamDang Date: Wed, 28 Mar 2018 05:59:05 +0800 Subject: [PATCH] Update init-containers.md (#7835) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Proper noun “Init Containers” are written in capital in this doc. --- docs/concepts/workloads/pods/init-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/workloads/pods/init-containers.md b/docs/concepts/workloads/pods/init-containers.md index 1d0f123ffb..98cb9121e3 100644 --- a/docs/concepts/workloads/pods/init-containers.md +++ b/docs/concepts/workloads/pods/init-containers.md @@ -124,7 +124,7 @@ spec: command: ['sh', '-c', 'echo The app is running! && sleep 3600'] ``` -There is a new syntax in Kubernetes 1.6, although the old annotation syntax still works for 1.6 and 1.7. The new syntax must be used for 1.8 or greater. We have moved the declaration of init containers to `spec`: +There is a new syntax in Kubernetes 1.6, although the old annotation syntax still works for 1.6 and 1.7. The new syntax must be used for 1.8 or greater. We have moved the declaration of Init Containers to `spec`: ```yaml apiVersion: v1