From 7a80aeb0b82876bdb504f58e4e3c6bfe987afad6 Mon Sep 17 00:00:00 2001 From: Shiming Zhang Date: Wed, 4 Aug 2021 14:06:11 +0800 Subject: [PATCH] docs: Moving from EOT to EOF Only this uses EOT, the others are EOF, uniformly changed to EOF to avoid confusion Fixes: #2550 Signed-off-by: Shiming Zhang --- .../how-to/how-to-use-k8s-with-cri-containerd-and-kata.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/how-to/how-to-use-k8s-with-cri-containerd-and-kata.md b/docs/how-to/how-to-use-k8s-with-cri-containerd-and-kata.md index 68a840bcdf..4c5ad3fa8a 100644 --- a/docs/how-to/how-to-use-k8s-with-cri-containerd-and-kata.md +++ b/docs/how-to/how-to-use-k8s-with-cri-containerd-and-kata.md @@ -71,12 +71,12 @@ $ for service in ${services}; do service_dir="/etc/systemd/system/${service}.service.d/" sudo mkdir -p ${service_dir} - cat << EOT | sudo tee "${service_dir}/proxy.conf" + cat << EOF | sudo tee "${service_dir}/proxy.conf" [Service] Environment="HTTP_PROXY=${http_proxy}" Environment="HTTPS_PROXY=${https_proxy}" Environment="NO_PROXY=${no_proxy}" -EOT +EOF done $ sudo systemctl daemon-reload @@ -172,7 +172,7 @@ If a pod has the `runtimeClassName` set to `kata`, the CRI plugin runs the pod w - Create an pod configuration that using Kata Containers runtime ```bash - $ cat << EOT | tee nginx-kata.yaml + $ cat << EOF | tee nginx-kata.yaml apiVersion: v1 kind: Pod metadata: @@ -183,7 +183,7 @@ If a pod has the `runtimeClassName` set to `kata`, the CRI plugin runs the pod w - name: nginx image: nginx - EOT + EOF ``` - Create the pod