From 1a605b1c20128b7872c2ac536cc01ddb1f05af26 Mon Sep 17 00:00:00 2001 From: duanquanfeng Date: Fri, 3 Jul 2020 09:52:12 +0800 Subject: [PATCH] Fix documentation about tasks --- docs/tasks.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tasks.md b/docs/tasks.md index 042daec6399..4272f221c21 100644 --- a/docs/tasks.md +++ b/docs/tasks.md @@ -526,10 +526,10 @@ Sidecars, just like `Steps`, can also run scripts: ```yaml sidecars: - image: busybox - name: hello-sidecar - script: | - echo 'Hello from sidecar!' + - image: busybox + name: hello-sidecar + script: | + echo 'Hello from sidecar!' ``` **Note:** Tekton's current `Sidecar` implementation contains a bug. Tekton uses a container image named `nop` to terminate `Sidecars`.