From 2f8df1d8a9ea566d9762291d7135f5992bd6466b Mon Sep 17 00:00:00 2001 From: Michael Petersen Date: Fri, 26 Jun 2020 09:45:03 -0700 Subject: [PATCH] Updated the script in the goodbye task so that it matches output further down in the docs --- content/en/docs/Getting Started/pipelines.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/content/en/docs/Getting Started/pipelines.md b/content/en/docs/Getting Started/pipelines.md index 5de6065..6268b41 100644 --- a/content/en/docs/Getting Started/pipelines.md +++ b/content/en/docs/Getting Started/pipelines.md @@ -32,10 +32,9 @@ spec: steps: - name: goodbye image: ubuntu - command: - - echo - args: - - "Goodbye World!" + script: | + #!/bin/bash + echo "Goodbye World!" ``` Write the YAML above to a file named `task-goodbye.yaml`, and apply it to your Kubernetes cluster: -- GitLab