From 321795000b744d377578f466800a9be8d3a20d28 Mon Sep 17 00:00:00 2001 From: yoshwata Date: Mon, 13 Dec 2021 23:43:37 +0000 Subject: [PATCH] fix: here doc style and comment --- .../en/docs/tasks/manage-kubernetes-objects/kustomization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/tasks/manage-kubernetes-objects/kustomization.md b/content/en/docs/tasks/manage-kubernetes-objects/kustomization.md index ce098264ab..be9df4da2f 100644 --- a/content/en/docs/tasks/manage-kubernetes-objects/kustomization.md +++ b/content/en/docs/tasks/manage-kubernetes-objects/kustomization.md @@ -748,8 +748,8 @@ Since the Service name may change as `namePrefix` or `nameSuffix` is added in th not recommended to hard code the Service name in the command argument. For this usage, Kustomize can inject the Service name into containers through `vars`. ```shell -# Create a deployment.yaml file -cat <<\EOF > deployment.yaml +# Create a deployment.yaml file (quoting the here doc delimiter) +cat <<'EOF' > deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: