Skip to content

Commit

Permalink
[test] fix typo in pipeline-loop example (kubeflow#860)
Browse files Browse the repository at this point in the history
add double quotes to the value of `true`
  • Loading branch information
yhwang authored Feb 24, 2022
1 parent 14c6195 commit 1997919
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ metadata:
tekton.dev/example-loop-pipeline: '{"spec":{"pipelineSpec":{"params":[{"name":"message","type":"string"}],"tasks":[{"name":"echo-loop-task","params":[{"name":"message","value":"$(params.message)"}],"taskSpec":{"params":[{"name":"message","type":"string"}],"steps":[{"name":"echo","image":"ubuntu","imagePullPolicy":"IfNotPresent","script":"#!/usr/bin/env bash\necho \"$(params.message)\"\n"}]}}]},"iterateParam":"message"}}'
name: pr-loop-example
labels:
pipelines.kubeflow.org/cache_enabled: true
pipelines.kubeflow.org/cache_enabled: "true"
spec:
pipelineSpec:
tasks:
Expand Down

0 comments on commit 1997919

Please sign in to comment.