From 15744969c6b65392d1aa91b680c779d2fb973b17 Mon Sep 17 00:00:00 2001 From: Scott Date: Mon, 31 Jan 2022 15:15:12 -0500 Subject: [PATCH] Fix kustomize invocation typo In 411d03 we added a note on using kustomize to build resources from the plumbing repo. One of those documented kustomize invocations included a typo. This commit updates the kustomize invocation to use `overlays` instead of `overlay`. --- tekton/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tekton/README.md b/tekton/README.md index 35e376454bc..c157180912d 100644 --- a/tekton/README.md +++ b/tekton/README.md @@ -102,7 +102,7 @@ kubectl kustomize ./tekton/resources/release | kubectl apply -f - # If you don't want the tekton-nightly components then run the following # command from the root of the plumbing repo: -kubectl kustomize ./tekton/resources/release/overlay/default | kubectl apply -f - +kubectl kustomize ./tekton/resources/release/overlays/default | kubectl apply -f - ``` Apply the tasks from the `pipeline` repo: