From e5fa074ca6f2d9533039204eee1ecbe87d1de877 Mon Sep 17 00:00:00 2001 From: Scott Date: Fri, 7 Aug 2020 11:56:32 -0400 Subject: [PATCH] Fix small typo in install doc for default workspace config When defining a default taskrun workspace in the config-defaults YAML file, the user should start their workspace configuration with the `|` character, to indicate that it's a block string. This character is currently missing from the example in the install doc. This commit adds the trailing `|` character to the config-defaults example in the install doc. --- docs/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install.md b/docs/install.md index 27403cf7147..42605d02e26 100644 --- a/docs/install.md +++ b/docs/install.md @@ -279,7 +279,7 @@ data: nodeSelector: kops.k8s.io/instancegroup: build-instance-group default-managed-by-label-value: "my-tekton-installation" - default-task-run-workspace-binding: + default-task-run-workspace-binding: | emptyDir: {} ```